Skip to content

Instantly share code, notes, and snippets.

@hammadzz
Created December 6, 2016 14:17
Show Gist options
  • Save hammadzz/bcbc5e7c950dc9253a8e247bb5844868 to your computer and use it in GitHub Desktop.
Save hammadzz/bcbc5e7c950dc9253a8e247bb5844868 to your computer and use it in GitHub Desktop.
- (NSString *)stringWithDeviceToken:(NSData *)deviceToken {
const char *data = [deviceToken bytes];
NSMutableString *token = [NSMutableString string];
for (NSUInteger i = 0; i < [deviceToken length]; i++) {
[token appendFormat:@"%02.2hhX", data[i]];
}
return [token copy];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment