码迷,mamicode.com
首页 > 移动开发 > 详细

关于iOS8上本地通知接收不到的问题

时间:2014-11-07 16:43:01      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:io   os   使用   sp   for   on   问题   bs   ad   

在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:)])

{

    [application registerUserNotificationSettings:[UIUserNotificationSettingssettingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSoundcategories:nil]];

}

 

关于iOS8上本地通知接收不到的问题

标签:io   os   使用   sp   for   on   问题   bs   ad   

原文地址:http://www.cnblogs.com/shuozi-love/p/4081488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!