您的位置:首页 > 移动开发 > IOS开发

IOS8 兼容本地推送

2015-06-23 00:00 246 查看
if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)])

{

[[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];

}


IOS8中需要先注册本地通知,用户点击了同意之后才能接受本地通知。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: