我没有进入方法
didRegisterForRemoteNotificationsWithDeviceToken
实际上我想获得设备 token ,我试图关注这个问题 Get Device Token in iOS 8但仍然面临同样的问题 .帮我解决这个问题
试试这个。
在你的方法中。
- (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions {
使用此代码
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)
{
[[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypesUIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
[[UIApplication sharedApplication] registerForRemoteNotifications];
}
else
{
[[UIApplication sharedApplication] registerForRemoteNotificationTypes: (UIRemoteNotificationTypeNewsstandContentAvailability| UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
}
然后把你的日志或断点放在
didRegisterForRemoteNotificationsWithDeviceToken
是否被调用。
如果您的应用已正确注册远程通知设置,但您没有获得设备 token ,那么
检查
didFailToRegisterForRemoteNotificationsWithError
告诉你遇到了哪个错误的方法。
注意:设备 token 仅在您在设备上运行时才会返回。操作系统模拟器不支持推送通知
如果您无法调用此方法,请查看本教程
http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1
并按照创建配置文件和证书的步骤进行操作。我尝试使用我现有的证书。按照本教程系列中的说明使用有效配置文件运行应用程序后,您将能够调用该方法。
关于ios - 无法在 ios 8 中获取设备 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32307098/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |