Last active
August 29, 2015 14:06
-
-
Save akisute/174cb2a08da8fe7c0022 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) { | |
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIRemoteNotificationTypeSound) categories:nil]; | |
[[UIApplication sharedApplication] registerUserNotificationSettings:settings]; // Asks users for authorization | |
[[UIApplication sharedApplication] registerForRemoteNotifications]; | |
} else { | |
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)]; // Asks users for authorization | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment