在開發(fā)中有時候我們需要跳轉(zhuǎn)到本機的設(shè)置界面, 比如說打開定位, 藍牙等等
-
首先在info.plist文件中設(shè)置一下
-
在URL Schemes 選項中添加prefs字段, 相當(dāng)于是注冊了這個地址
然后在需要跳轉(zhuǎn)的地方添加對應(yīng)的跳轉(zhuǎn)代碼
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]];
下面是常用的跳轉(zhuǎn)代碼
蜂窩網(wǎng)絡(luò):prefs:root=MOBILE_DATA_SETTINGS_IDVPN — prefs:root=General&path=Network/VPNWi-Fi:prefs:root=
WIFI定位服務(wù):prefs:root=LOCATION_SERVICES
個人熱點:prefs:root=INTERNET_TETHERING
關(guān)于本機:prefs:root=General&path=About
輔助功能:prefs:root=General&path=ACCESSIBILITY
飛行模式:prefs:root=AIRPLANE_MODE
鎖定:prefs:root=General&path=AUTOLOCK
亮度:prefs:root=Brightness
藍牙:prefs:root=General&path=Bluetooth
時間設(shè)置:prefs:root=General&path=DATE_AND_TIMEFaceTime:prefs:root=FACETIME
設(shè)置:prefs:root=General
鍵盤設(shè)置:prefs:root=General&path=KeyboardiCloud:prefs:root=CASTLEiCloud
備份:prefs:root=CASTLE&path=STORAGE_AND_BACKUP
語言:prefs:root=General&path=INTERNATIONAL
定位:prefs:root=LOCATION_SERVICES
音樂:prefs:root=MUSICMusic
其他的功能其參考
鏈接