應用內跳轉到系統設定介面

2021-07-09 20:33:37 字數 2290 閱讀 9807

從網上查資料都說從ios 5.1以後的版本系統取消了應用內跳轉,但是那個方法也沒有被過期,不解,今天正好碰到這個問題,有乙個測試機可以跳轉到設定介面,其他的就都不可以跳轉.研究了一下也從網上找了一些資料,感覺說的不是很詳細.自己重新寫一遍省的以後自己忘掉. }

上面的**只可以跳轉到設定介面,這個跳轉是不用做任何設定就可以跳轉的,假如要跳轉到指定的介面, 比如 wifi 的介面就需要再做進一步的設定 ,首先**是一樣的格式

nsurl * url = [nsurl urlwithstring:@"prefs:root=wifi"];

}

然後在 info.plist 檔案中新增 url types

新增 url schemes 為 prefs的url

或者這樣

都可以.

跳轉到其他介面的 url:

about — prefs:root=general&path=about  

accessibility — prefs:root=general&path=accessibility  

airplanemodeon— 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 volumelimit— 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  

softwareupdate— 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

setting—prefs:root=internet_tethering

IOS應用內跳轉到系統設定

ios應用內跳轉到系統設定 設定跳轉有三種方式,每一種的使用場景都不同。並且你跳轉到系統中自己應用下面設定的時候,你的應用要提前至少申請了某乙個許可權,如 通訊錄,通知,定位等 否則,會引起崩潰。本篇針對ios7 ios8 ios9 ios10,來介紹其中區別。一 跳轉方法 二 跳轉到 去?系統的設...

iOS應用如何跳轉到設定介面

有時候,我們希望使用者跳轉到設定介面,進行一些設定。這個時候該如何跳轉呢?這種方式雖然能跳轉到設定介面,但是不能跳轉到具體的頁面 在url types新增 乙個叫prefs的url schemes,如圖 新增url schemes 注意,按照要求拼接好跳轉的urlstring,就可以實現對應介面的跳...

iOS iOS 跳轉到系統的設定介面

about prefs root general path about accessibility prefs root general path accessibility airplane mode on prefs root airplane mode auto lock prefs root...