Skip to content

Instantly share code, notes, and snippets.

@virasio
Created April 10, 2014 08:14
Show Gist options
  • Save virasio/10355031 to your computer and use it in GitHub Desktop.
Save virasio/10355031 to your computer and use it in GitHub Desktop.
NSData Apple Push Notification Device Token to NSString
// ...
- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
NSString * token = [[[[deviceToken description]
stringByReplacingOccurrencesOfString: @"<" withString: @""]
stringByReplacingOccurrencesOfString: @">" withString: @""]
stringByReplacingOccurrencesOfString: @" " withString: @""];
// ...
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment