As the apple's official info page about push notification states:
"Device tokens can change, so your app needs to reregister every time it is launched."
I trying to understand what they meant by "every time it is launched".
Does it mean I have to call it in the AppDelegate, in didFinishLaunchingWithOptions() like so:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
application.registerForRemoteNotifications()
return true
}
Putting this code here will cause it to execute every time the user opens the app, which could be many times a minute if the user is multi tasking between apps (going back and forth between them).
And since calling the registration method invokes an HTTP request to APNS, there is a risk of getting temporary ban.
Are those observations are correct, or I can put the register method like so without any fear?
(I am using xcode 6.2 with Swift)
didFinishLaunchingWithOptions
is not called every time the user switches to your app, as often your app is still running. What you're describing sounds more like applicationDidBecomeActive
.
Add some NSLog
s to both methods to convince yourself that didFinishLaunchingWithOptions
is the right place to call .registerForRemoteNotifications
.