美文网首页
iOS 跳转到系统设置的功能

iOS 跳转到系统设置的功能

作者: yanhaiqiang | 来源:发表于2017-06-05 15:32 被阅读0次

在项目中,我们经常会碰到使用位置的需求。当用户设置app不允许使用位置的时候,最好的用户体验就是直接调转到系统的位置设置界面,进行设置。

本人已经测试

跳转到自己的项目中

在需要调转的按钮动作中添加如下的代码,就会跳转到设置中自己的app的设置界面,这里会有通知和位置权限的设置

NSString * urlString = @"App-Prefs:root=WIFI";

NSURL * url = [NSURLURLWithString:UIApplicationOpenSettingsURLString];

if([[UIApplicationsharedApplication] canOpenURL:url]) {

      if ([[UIDevice currentDevice].systemVersion doubleValue] >= 10.0) {

     [[UIApplication sharedApplication] openURL:[NSURL          URLWithString:urlString] options:@{} completionHandler:nil];

     } else {

     [[UIApplication sharedApplication] openURL:[NSURL   URLWithString:urlString]];

    }

}

测试注意:新项目测试,需要请求一下位置权限或者通知权限,才可以跳进自己的app设置里面,如果没有任何权限请求,就只能跳到系统的设置界面

跳转到系统设置的其他界面

在点击跳转的按钮动作中添加如下代码

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];

在项目中的info中添加 URL types

添加 URL Schemes 为 prefs的url

这样点击就可以跳转到wifi设置界面

跳转到其他的界面的字段

无线局域网 App-Prefs:root=WIFI

蓝牙 App-Prefs:root=Bluetooth

蜂窝移动网络 App-Prefs:root=MOBILE_DATA_SETTINGS_ID

个人热点 App-Prefs:root=INTERNET_TETHERING

运营商 App-Prefs:root=Carrier

通知 App-Prefs:root=NOTIFICATIONS_ID

通用 App-Prefs:root=General

通用-关于本机 App-Prefs:root=General&path=About

通用-键盘 App-Prefs:root=General&path=Keyboard

通用-辅助功能 App-Prefs:root=General&path=ACCESSIBILITY

通用-语言与地区 App-Prefs:root=General&path=INTERNATIONAL

通用-还原 App-Prefs:root=Reset

墙纸 App-Prefs:root=Wallpaper

Siri App-Prefs:root=SIRI

隐私 App-Prefs:root=Privacy

Safari App-Prefs:root=SAFARI

音乐 App-Prefs:root=MUSIC

音乐-均衡器 App-Prefs:root=MUSIC&path=com.apple.Music:EQ

照片与相机 App-Prefs:root=Photos

FaceTime App-Prefs:root=FACETIME

只需要把对应的字符串换一下就可以了。

相关文章

网友评论

      本文标题:iOS 跳转到系统设置的功能

      本文链接:https://www.haomeiwen.com/subject/mdgifxtx.html