码迷,mamicode.com
首页 > 移动开发 > 详细

iOS10 App跳转到系统设置

时间:2017-06-05 12:43:15      阅读:1585      评论:0      收藏:0      [点我收藏+]

标签:nil   ica   keyboard   移动网络   data   int   ref   time   eval   

 实现类似万能钥匙中点击一个Wi-Fi跳转到系统Wi-Fi设置界面的功能。

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

if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:urlString]]) {

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

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

    } else {

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

    }
}

类似也有跳转到以下:

无线局域网 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

iOS10 App跳转到系统设置

标签:nil   ica   keyboard   移动网络   data   int   ref   time   eval   

原文地址:http://www.cnblogs.com/Milo-CTO/p/6944053.html

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