码迷,mamicode.com
首页 > 其他好文 > 详细

是否开启本地应用推送功能

时间:2016-05-03 16:03:34      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

1、检测是否开启本地应用推送功能

-(BOOL)isOpenNotification{
    
    if([[[UIDevice currentDevice] systemVersion]floatValue]>=8.0){
        
        UIUserNotificationType types=[[UIApplication sharedApplication]currentUserNotificationSettings].types;
        
        return (types & UIRemoteNotificationTypeAlert);
        
    }else{
        
        UIRemoteNotificationType types=[[UIApplication sharedApplication]enabledRemoteNotificationTypes];
        
        return (types & UIRemoteNotificationTypeAlert);
        
    }
    
}

 2、跳转对应应用开启推送允许通知

[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"prefs:root=NOTIFICATIONS_ID&&path=xxxxx]];

 “xxxx”是指你的bundleid

是否开启本地应用推送功能

标签:

原文地址:http://www.cnblogs.com/superbobo/p/5455017.html

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