现在我将我的应用程序从ios7升级到ios8。 pushnotificatin适用于iphone5但不支持iphone6。 请回答在这个领域有经验的人。 感谢。
答案 0 :(得分:1)
我遇到了同样的问题,希望以下对你有所帮助。 从ios sdk8开始,您无法使用关注代码。
[application registerForRemoteNotificationTypes:
(UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];
请试试这个。
UIUserNotificationSettings *settings =
[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert |
UIUserNotificationTypeBadge |
UIUserNotificationTypeSound
categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:settings];
[[UIApplication sharedApplication] registerForRemoteNotifications];