先上效果图:
// 效果1 - 跳入该应用的所有设置项
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
// 效果2 -跳入该应用的通知设置页面
NSString *identifier = [[NSBundle mainBundle] bundleIdentifier];
NSURL *openUrl = [NSURL URLWithString:[NSString stringWithFormat:@"App-Prefs:root=NOTIFICATIONS_ID&path=%@",identifier]];
if ([[UIApplication sharedApplication] canOpenURL:openUrl]){
//在iOS应用程序中打开设备设置界面及其中某指定的选项界面-通知界面
[[UIApplication sharedApplication] openURL:openUrl];
}
#补充应用通知开关判断
if ([[UIApplication sharedApplication] currentUserNotificationSettings].types == UIUserNotificationTypeNone) {
NSLog(@"没有打开");
}else{
NSLog(@"==========打开了");
}