gpt4 book ai didi

ios - iOS 7 和 iOS 8 中的推送通知有什么区别?

转载 作者:行者123 更新时间:2023-12-01 18:11:51 24 4
gpt4 key购买 nike

你能告诉我 IOS 7 和 IOS 8 中推送通知的区别,IOS 8 中的新方法是什么。

最佳答案

如果您想在所有情况下都在 iOS 6、7、8 中处理推送通知,请在 didFinishLaunchingWithOptions 中使用以下代码片段

if ([application respondsToSelector:@selector(isRegisteredForRemoteNotifications)])
{
// iOS 8 Notifications
[application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];

[application registerForRemoteNotifications];
}
else
{
// iOS < 8 Notifications
[application registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound)];
}

关于ios - iOS 7 和 iOS 8 中的推送通知有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29225291/

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