I want to send silent notifications to my users (receive in background - not alert, sound or badge). I checked the Remote Notifications option in Xcode's Background Modes.
My question is - do I still need to register for remote notifications using [UIApplication sharedApplication] registerForRemoteNotificationTypes?
If so - what type should I use? None of them looks like "Silent Notifications":
- UIRemoteNotificationTypeNone
- UIRemoteNotificationTypeBadge
- UIRemoteNotificationTypeSound
- UIRemoteNotificationTypeAlert
- UIRemoteNotificationTypeNewsstandContentAvailability
What is the correct way to do this?