//引入头文件
#import <UserNotifications/UserNotifications.h>
- (void)viewDidAppear:(BOOL)animated {
//首先判断应用通知是否授权,注意iOS10.0之后方法不一样
if (@available(iOS 10.0, *)) {
[[UNUserNotificationCenter currentNotificationCenter] getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {
if (settings.authorizationStatus == UNAuthorizationStatusNotDetermined)
{
NSLog(@"未选择");
[self opentNotificationAlert];
}else if (settings.authorizationStatus == UNAuthorizationStatusDenied){
NSLog(@"未授权");
[self opentNotificationAlert];
}else if (settings.authorizationStatus == UNAuthorizationStatusAuthorized){
NSLog(@"已授权");
}
}];
} else {
if ([[UIApplication sharedApplication] currentUserNotificationSettings].types == 0) {
[self opentNotificationAlert];
}
}
}
/** 跳转系统设置方法*/
- (void)opentNotificationAlert {
/**< 弹出框 */
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"推送通知关闭"
message:@"请前往打开通知,获取更多精彩瞬间!"
preferredStyle:UIAlertControllerStyleAlert];
[alertController addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
}]];
[alertController addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[self.presentedViewController dismissViewControllerAnimated:YES completion:nil];
if (@available(iOS 10.0, *)) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString] options:@{} completionHandler:nil];
} else {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=NOTIFICATIONS_ID&path=com.xxx.xxx"]];//prefs:root=服务&path=项目bundleID }
}]; [self presentViewController:alertController animated:YES completion:nil]; }
iOS判断系统通知权限及进入设置
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 如果app中有推送功能,那么一般app的设置中都会有一个UISwitch开关来控制是否接收通知,或者用户可以选择关...
- 当APP中有推送的时候就要考虑到通知权限是否用户有没有开启权限的情况,下面就是对判断用户是否开启权限并且跳转到权限...
- 有时候产品要求增加一个推送通知的开关(有些还要求具体到哪些通知,比如广告类? 比如重大热点等?)。 我们首先想到的...