Skip to content

Instantly share code, notes, and snippets.

@imosquera
Created January 24, 2012 18:11
Show Gist options
  • Select an option

  • Save imosquera/1671602 to your computer and use it in GitHub Desktop.

Select an option

Save imosquera/1671602 to your computer and use it in GitHub Desktop.
Register For Notifications
- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
NSLog(@"Error Register Notifications: %@", [error localizedDescription]);
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[application registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound)];
//application specific code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment