iOS跳轉到設定介面

2021-07-11 22:05:01 字數 2275 閱讀 4576

//定位服務設定介面

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

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

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

iOS之小技巧,跳轉到系統設定介面

ios 10 以前的實現方法 蜂窩網路 prefs root mobile data settings id wi fi prefs root wifi 定位服務 prefs root location services 個人熱點 prefs root internet tethering 關於本機...

iOS中APP跳轉到系統的各種設定介面

前言 ios5.1以後就不能正常呼叫了,下面寫出轉到系統setting的兩種方式 方式一 我在網上找到乙個列表,可以跳到這些介面的引數配置 about prefs root general path about accessibility prefs root general path access...