iOS跳轉到具體某個應用的設定

2021-07-11 11:31:31 字數 2355 閱讀 8593

在ios開發中,有時會有跳轉系統設定介面的需求,例如提示使用者開啟藍芽或者wifi,提醒使用者開啟推送或者位置許可權等。在ios6之後,第三方應用需要跳轉系統設定介面,需要在url type中新增乙個prefs值,如下圖:

開啟wifi的設定頁面 

- (ibaction)setwifi:(id)sender 

}

有很多系統的其他設定**如下:

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

@,

@,@,

@,@,

@,@,

@,@,

@,@,

@,@,

@,@,

@,@,

@,@,

@,@,

@,@,

@

開啟自己的設定介面:
- (void)alertview:(uialertview *)alertview clickedbuttonatindex:(nsinteger)buttonindex }}

iOS跳轉到設定具體功能的url

跳到其他的設定頁面,例如 定位服務 wifi facetime等等 功能 url 關於本機 prefs root general path about 輔助功能 prefs root general path accessibility 飛行模式 prefs root airplane mode 自...

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

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

IOS應用內跳轉到系統設定

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