当前位置:  开发笔记 > IOS > 正文

为什么appdelegate中的函数没有被调用?

如何解决《为什么appdelegate中的函数没有被调用?》经验,为你挑选了1个好方法。



1> TwoStraws..:

这种情况的问题是你在iOS模拟器中运行,它不支持远程通知.所以,你didRegisterForRemoteNotificationsWithDeviceToken永远不会被召唤,因为你在模拟器中.试试设备,我怀疑它会第一次工作.

对于发现此问题并遇到类似问题的未来读者,诊断问题的最佳方法是将其添加到您的应用代理:

func application(application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: NSError) {
    print("Failed to register for remote notifications: \(error.localizedDescription)");
}

推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有