mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-11 00:08:50 +08:00
17 lines
442 B
Objective-C
17 lines
442 B
Objective-C
#import "RNNotificationUtils.h"
|
|
|
|
@implementation RNNotificationUtils
|
|
|
|
+ (NSString *)deviceTokenToString:(NSData *)deviceToken {
|
|
NSMutableString *result = [NSMutableString string];
|
|
NSUInteger deviceTokenLength = deviceToken.length;
|
|
const unsigned char *bytes = deviceToken.bytes;
|
|
for (NSUInteger i = 0; i < deviceTokenLength; i++) {
|
|
[result appendFormat:@"%02x", bytes[i]];
|
|
}
|
|
|
|
return [result copy];
|
|
}
|
|
|
|
@end
|