iOS8本地通知异常

来源:互联网 发布:西安大数据小镇 编辑:程序博客网 时间:2024/05/06 05:44

在iOS8系统开发使用本地通知时,会出现如下的相关提示语:

1 Attempting to schedule a local notification
2 with an alert but haven't received permission from the user to display alerts
3 with a sound but haven't received permission from the user to play sounds

……

原因在于在iOS8系统上需要注册本地通知,这样才能正常使用


// iOS8注册本地通知

if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)])

{

    [applicationregisterUserNotificationSettings:[UIUserNotificationSettingssettingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSoundcategories:nil]];

}




0 0
原创粉丝点击