//定位服務設定介面
nsurl *url = [nsurl urlwithstring:@"prefs:root=location_services"];
這樣就可以跳到系統設定的定位服務介面啦!我們繼續看幾個列子。
//facetime設定介面
nsurl *url = [nsurl urlwithstring:@"prefs:root=facetime"];
//**設定介面
nsurl *url = [nsurl urlwithstring:@"prefs:root=music"];
//牆紙設定介面
nsurl *url = [nsurl urlwithstring:@"prefs:root=wall*****"];
//藍芽設定介面
nsurl *url = [nsurl urlwithstring:@"prefs:root=bluetooth"];
//icloud設定介面
nsurl *url = [nsurl urlwithstring:@"prefs:root=castle"];
看到這幾個例子,大家有沒有發現,想跳到哪個設定介面只需要prefs:root=後面的值即可!是的,就是這樣的。
我在網上找到乙個列表,可以跳到這些介面的引數配置:
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
wall***** — prefs:root=wall*****
wi-fi — prefs:root=wifi
Android之跳轉系統設定頁面
安卓開發中有了乙個需求,跳轉系統的設定中的介面,在此記錄一下常見的action。跳轉系統的輔助功能介面 action accessibility settings intent intent new intent settings.action accessibility settings star...
iOS 跳轉系統設定
在自己的專案中 需要設定我們的 在執行的方法中執行如下 就會跳到系統的通知的設定中,如下 nsurl url nsurl urlwithstring prefs root location services if 跳到系統的通知設定頁面 如下 oc nsurl url nsurl urlwithst...
安卓跳轉系統網路設定
全部網路設定 action wireless settings wifi設定 action wifi settings 3g流量設定 action data roaming settings 傳送intent,系統接收並跳轉.整體 startactivity new intent settings....