Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi my dear friend: I encountered a problem, one of our company's iphone application productions uses the pushnotification when user first time installed the application,it pops up a system alertView ask user if allowed recieving push notification

My Question is how to know the user pressed "allowed" or "not allowed"

Thank you !!!

share|improve this question

1 Answer

For remote notifications -- If the registration succeeded, your application delegate will get a callback to this method:

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken

If it failed, the callback will instead come to this method:

- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error

Note that there are reasons the registration could fail other than the user pressing the "not allowed" button. See here for more information.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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