Files
react-native-notifications/RNNotifications/RNNotificationUtils.m
2019-07-11 12:13:53 +03:00

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