我正在使用正在使用Urbanaisrship推送通知的Cordova应用。
当我将我的版本加载到版本为(7.1)的iPhone-4时,我可以将我的应用程序看到设备设置 - >通知中心。
但是,当我将同样的版本加载到我的其他设备Iphone 5s时,我的应用程序没有显示设置版本 - > Notification Center。
所以任何好友都可以告诉我IOS版本8.2的错误是什么?
答案 0 :(得分:2)
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//other code
// add this piece of code
if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
[application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];
[application registerForRemoteNotifications];
}
}
将这段代码添加到您的appdelegate文件