Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created July 11, 2009 09:10
Show Gist options
  • Select an option

  • Save jpoz/145185 to your computer and use it in GitHub Desktop.

Select an option

Save jpoz/145185 to your computer and use it in GitHub Desktop.
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeBadge)];
}
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
NSLog(@"deviceToken: %@", deviceToken);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment