I'd want my app to only receive remote notifications when the user has signed in. I've been reading Apple's Local and Remote Notification Programming Guide, and I'm not sure if it is required to call registerUserNotificationSettings: when the app launches (application:didFinishLaunchingWithOptions:), or that is just an example and I can register for remote notifications once the user has signed in (if he does).
On the other hand, if I want to stop receiving remote notifications when the user signs out... is it possible to "unregister" the app?
Thanks