swift3.0调用注册方法
// 注册获得device Token
UIApplication.shared.registerForRemoteNotifications()
收到回调通知
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
let device = deviceToken.description.replacingOccurrences(of: "<", with: "").replacingOccurrences(of: ">", with: "").replacingOccurrences(of: " ", with: "")
print(device)
print("Device Token:\(String(describing: deviceToken))")
}
然而打印的数据一直是
32bytes
Device Token:32 bytes
难道我上面的转换方式写错了吗 为什么不应该是一个正常的字符串的系列号之类
PS:OC写法
NSString *deviceTokenString2 = [[[[deviceTokendescription] stringByReplacingOccurrencesOfString:@"<"withString:@""]
stringByReplacingOccurrencesOfString:@">" withString:@""]
stringByReplacingOccurrencesOfString:@" " withString:@""];
NSLog(@"方式2:%@", deviceTokenString2);
誰もそれに遭遇していないか、単純すぎて誰も気にしていないようです。
リーリーしかし、私はついに答えを見つけました。
変換方法は正しいですが、
func application(_ application: UIApplication, DidRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
返された deviceToken に問題があります。 Apple の問題かどうかはわかりませんが、
に 1 つの文を追加するだけです
let nsdataStr = NSData.init(data: deviceToken)
コピー
を再インスタンス化してから実行してください。
let datastr = nsdataStr.description.replacingOccurrences(of: "<", with: "").replacingOccurrences(of: ">", with: "").replacingOccurrences(of: " ", with: " ")
望む結果を出力できます