通过Java使用Apple Push Notification Service

通过Java使用Apple Push Notification Service,第1张

通过Java使用Apple Push Notification Service

一点提示,为了将收到令牌转换为适合用javapns注册的格式,此代码可以解决问题:

- (NSString *)convertTokenToDeviceID:(NSData *)token {NSMutableString *deviceID = [NSMutableString string];// iterate through the bytes and convert to hexunsigned char *ptr = (unsigned char *)[token bytes];for (NSInteger i=0; i < 32; ++i) {    [deviceID appendString:[NSString stringWithFormat:@"%02x", ptr[i]]];}return deviceID;

}



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5095643.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存