swift 获取推送deviceToken
Posted zuidap
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 获取推送deviceToken相关的知识,希望对你有一定的参考价值。
升级swift3以后,在使用didRegisterForRemoteNotificationsWithDeviceToken这个方法的时候返回的deviceToken的数据类型为Data,打印出来的deviceToken值是“32byte ”
下面两种方法转打印 deviceToken
let device = NSData(data: deviceToken)
let deviceId = device.description.replacingOccurrences(of:"<", with:"").replacingOccurrences(of:">", with:"").replacingOccurrences(of:" ", with:"")
print("我的deviceToken:\(deviceId)")
或者
let str = deviceToken.map { String(format: "%02.2hhx", $0) }.joined()
print(message: str)
以上是关于swift 获取推送deviceToken的主要内容,如果未能解决你的问题,请参考以下文章