004-如何跳转至系统设置界面

一、定位服务 

1 // 定位服务设置界面
2 NSURL *url = [NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"];
3 if ([[UIApplication sharedApplication] canOpenURL:url]) {
4     [[UIApplication sharedApplication] openURL:url];
5 }

 

二、FaceTime

1 // FaceTime设置界面
2 NSURL *url = [NSURL URLWithString:@"prefs:root=FACETIME"];
3 if ([[UIApplication sharedApplication] canOpenURL:url]) {
4     [[UIApplication sharedApplication] openURL:url];
5 }

 

三、音乐

1 // 音乐设置界面
2 NSURL *url = [NSURL URLWithString:@"prefs:root=MUSIC"];
3 if ([[UIApplication sharedApplication] canOpenURL:url]) {
4     [[UIApplication sharedApplication] openURL:url];
5 }

 

四、墙纸设置界面

1 // 墙纸设置界面
2 NSURL *url = [NSURL URLWithString:@"prefs:root=Wallpaper"];
3 if ([[UIApplication sharedApplication] canOpenURL:url]) {
4     [[UIApplication sharedApplication] openURL:url];
5 }

 

五、蓝牙设置界面

1 // 蓝牙设置界面
2 NSURL *url = [NSURL URLWithString:@"prefs:root=Bluetooth"];
3 if ([[UIApplication sharedApplication] canOpenURL:url]) {
4     [[UIApplication sharedApplication] openURL:url];
5 }

 

六、iCloud设置界面

1 // iCloud设置界面
2 NSURL *url = [NSURL URLWithString:@"prefs:root=CASTLE"];
3 if ([[UIApplication sharedApplication] canOpenURL:url] {
4     [[UIApplication sharedApplication] openURL:url];
5 }

 

 七、参数配置

 Aboutprefs:root=General&path=About

 Accessibilityprefs:root=General&path=ACCESSIBILITY

 Airplane Mode Onprefs:root=AIRPLANE_MODE

 Auto-Lockprefs:root=General&path=AUTOLOCK

 Brightnessprefs:root=Brightness

 Bluetoothprefs:root=General&path=Bluetooth

 Date & Timeprefs:root=General&path=DATE_AND_TIME

 FaceTimeprefs:root=FACETIME

 Generalprefs:root=General

 Keyboardprefs:root=General&path=Keyboard

 iCloudprefs:root=CASTLE

 iCloud Storage & Backupprefs:root=CASTLE&path=STORAGE_AND_BACKUP

 Internationalprefs:root=General&path=INTERNATIONAL

 Location Servicesprefs:root=LOCATION_SERVICES

 Musicprefs:root=MUSIC

 Music Equalizerprefs:root=MUSIC&path=EQ

 Music Volume Limitprefs:root=MUSIC&path=VolumeLimit

 Networkprefs:root=General&path=Network

 Nike + iPodprefs:root=NIKE_PLUS_IPOD

 Notesprefs:root=NOTES

 Notificationprefs:root=NOTIFICATIONS_ID

 Phoneprefs:root=Phone

 Photosprefs:root=Photos

 Profileprefs:root=General&path=ManagedConfigurationList

 Resetprefs:root=General&path=Reset

 Safariprefs:root=Safari

 Siriprefs:root=General&path=Assistant

 Soundsprefs:root=Sounds

 Software Updateprefs:root=General&path=SOFTWARE_UPDATE_LINK

 Storeprefs:root=STORE

 Twitterprefs:root=TWITTER

 Usageprefs:root=General&path=USAGE

 VPNprefs:root=General&path=Network/VPN

 Wallpaperprefs:root=Wallpaper

 Wi-Fiprefs:root=WIFI

posted @ 2016-05-10 16:05  Frank9098  阅读(95)  评论(0)    收藏  举报