I have an app where I want to unregister for push notifications when the user logout. This can simply be done using
[[UIApplication sharedApplication] unregisterForRemoteNotifications];
However, is there no way to register (or prompt for registration) once a user login at a later time?
Answers to this question suggest there is not, so what is then the recommended way of handling this?
The documentation of notification services gives, as far as I can tell, no clue how to handle this.
All suggestions are appreciated!