iOS8跳轉到系統設定頁
阿新 • • 發佈:2019-01-22
大家都知道,在iOS5.0時時可以跳轉到系統的設定頁的。但是在5.1之後就不可以了。
剛才研究了下這個問題,發現只有iOS8可以跳轉到系統設定裡自己App的頁面。
目前沒有找到iOS7怎麼跳轉過去。如果你知道請一定要留言告知,Thanks!
下面說下iOS8是如何跳轉的,以下是程式碼:
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; if ([[UIApplication sharedApplication] canOpenURL:url]) { [[UIApplication sharedApplication] openURL:url]; }
如果有感興趣的同學可以留言大家談論。
===================2015-07-22補充========================
跳轉到系統WiFi設定頁面程式碼:
NSURL*url=[NSURL URLWithString:@"prefs:root=WIFI"];
[[UIApplication sharedApplication] openURL:url];
另附其他設定頁面:
About — prefs:root=General&path=About Accessibility — prefs:root=General&path=ACCESSIBILITY Airplane Mode On — prefs:root=AIRPLANE_MODE Auto-Lock — prefs:root=General&path=AUTOLOCK Brightness — prefs:root=Brightness Bluetooth — prefs:root=General&path=Bluetooth Date & Time — prefs:root=General&path=DATE_AND_TIME FaceTime — prefs:root=FACETIME General — prefs:root=General Keyboard — prefs:root=General&path=Keyboard iCloud — prefs:root=CASTLE iCloud Storage & Backup — prefs:root=CASTLE&path=STORAGE_AND_BACKUP International — prefs:root=General&path=INTERNATIONAL Location Services — prefs:root=LOCATION_SERVICES Music — prefs:root=MUSIC Music Equalizer — prefs:root=MUSIC&path=EQ Music Volume Limit — prefs:root=MUSIC&path=VolumeLimit Network — prefs:root=General&path=Network Nike + iPod — prefs:root=NIKE_PLUS_IPOD Notes — prefs:root=NOTES Notification — prefs:root=NOTIFICATIONS_ID Phone — prefs:root=Phone Photos — prefs:root=Photos Profile — prefs:root=General&path=ManagedConfigurationList Reset — prefs:root=General&path=Reset Safari — prefs:root=Safari Siri — prefs:root=General&path=Assistant Sounds — prefs:root=Sounds Software Update — prefs:root=General&path=SOFTWARE_UPDATE_LINK Store — prefs:root=STORE Twitter — prefs:root=TWITTER Usage — prefs:root=General&path=USAGE VPN — prefs:root=General&path=Network/VPN Wallpaper — prefs:root=Wallpaper Wi-Fi — prefs:root=WIFI Setting —prefs:root=INTERNET_TETHERING
原文地址:http://blog.csdn.net/showhilllee/article/details/44057403
-----------警告⚠️------------
經過試驗,在LZ的裝置上跳轉都沒有問題(裝置iPhone6,iOS8.3),但是在iphone5s,iphopn6 plus(都是8.4)上是無法跳轉的。感覺蘋果在走一條不歸路啊~
PS.有其他手機或系統的可以留言下是否可以。