Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- extern "C" {
- void *_EnableLocalNotificationIOS8();
- }
- void *_EnableLocalNotificationIOS8()
- {
- UIApplication *app = [UIApplication sharedApplication];
- if ([app respondsToSelector:@selector(registerUserNotificationSettings:)])
- {
- UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
- [app registerUserNotificationSettings:settings];
- [app registerForRemoteNotifications];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment