vote up 1 vote down star
2

I'm looking for a way to determine if the user has, via settings, enabled or disabled their push notifications for my application.

Thanks.

flag

56% accept rate

1 Answer

vote up 5 vote down check

call enabledRemoteNotificationsTypes and check the mask.

ex:

UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types == UIRemoteNotificationTypeNone) 
   // blah blah blah
link|flag
thanks for the quick reply – Kevin Oct 8 at 3:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.