Wednesday, 12 August 2015

IOS - How to disable push notification at logout?


On logout:

[[UIApplication sharedApplication] unregisterForRemoteNotifications];

On login:

[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
        (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];

No comments:

Post a Comment