iOS iOS 10之后 跳转到设置界面

网上百度的 谷歌的都是一堆坑 实现不了 参照swift 的跳转方法

之前跳转是要设置 URL Types


iOS iOS 10之后 跳转到设置界面_第1张图片

然后设置 NSURL*url = [NSURLURLWithString:@"prefs:root=WIFI"];

[[UIApplication sharedApplication] openURL:url]; 

10之后这样根本不行

10 之后不用设置URL Types

直接跳转就行了 url 前要加个APP-

NSURL*url = [NSURLURLWithString:@"App-Prefs:root=WIFI"];

[[UIApplicationsharedApplication]openURL:urloptions:@{}completionHandler:nil];

这样就行了 亲测 使用的iphone 6 10.3.2系统

设置中其他页面跳转的URL写法:

设置页面 App-Prefs:root

无线局域网 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 iOS 10之后 跳转到设置界面)