Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xtremepush-gists/a02ef9cd7a027f5cd64d123bc894339f to your computer and use it in GitHub Desktop.
Save xtremepush-gists/a02ef9cd7a027f5cd64d123bc894339f to your computer and use it in GitHub Desktop.
NSInteger types;
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.f) {
types = UIUserNotificationTypeBadge | UIUserNotificationTypeAlert | UIUserNotificationTypeSound;
} else {
types = UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeBadge;
}
[XPush registerForRemoteNotificationTypes:types];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment