Skip to content

Instantly share code, notes, and snippets.

@JohnnyTseng
Created March 13, 2015 07:55
Show Gist options
  • Save JohnnyTseng/e70038e580bfc40ee7ec to your computer and use it in GitHub Desktop.
Save JohnnyTseng/e70038e580bfc40ee7ec to your computer and use it in GitHub Desktop.
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {
[[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
[[UIApplication sharedApplication] registerForRemoteNotifications];
} else {
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment