Skip to content

Instantly share code, notes, and snippets.

@brunomunizaf
Created November 19, 2020 23:58
Show Gist options
  • Save brunomunizaf/7a991660396c719650472846209c377d to your computer and use it in GitHub Desktop.
Save brunomunizaf/7a991660396c719650472846209c377d to your computer and use it in GitHub Desktop.
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
UIUserNotificationType userNotificationTypes = (UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound);
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:userNotificationTypes categories:nil];
[application registerUserNotificationSettings:settings];
[application registerForRemoteNotifications];
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment