gpt4 book ai didi

ios - 在 APNS 中,无法在除 iPhone 4 以外的任何设备中获取设备 token

转载 作者:行者123 更新时间:2023-11-29 00:47:39 28 4
gpt4 key购买 nike

在 APNS 中,它无法在除 iPhone 4didRegisterForRemoteNotificationsWithDeviceToken 未执行的任何设备中获取设备 token - 推送通知。

最佳答案

试试这个...

if (SYSTEM_VERSION_LESS_THAN(@"8.0")) {
[application registerForRemoteNotificationTypes: (UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
} else {
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:(UIRemoteNotificationTypeBadge|UIRemoteNotificationTypeSound|UIRemoteNotificationTypeAlert) categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:settings];
}

关于ios - 在 APNS 中,无法在除 iPhone 4 以外的任何设备中获取设备 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38455849/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com