iOS 跳轉系統設定

2021-07-22 16:00:39 字數 2762 閱讀 1231

在自己的專案中

需要設定我們的**,在執行的方法中執行如下**,就會跳到系統的通知的設定中,**如下:

nsurl

*url = [

nsurl

urlwithstring

:@"prefs:root=location_services"]; if

([[ [[

}跳到系統的通知設定頁面

**如下:

oc:nsurl

*url = [

nsurl

urlwithstring

:@"prefs:root=location_services"]; if

([[ [[

} 關於ios系統功能的url 彙總列表:

定位:

prefs:root=location_services

蜂窩網路:prefs:root=mobile_data_settings_id

vpn — prefs:root=general&path=network/vpn

wi-fi:prefs:root=wifi

定位服務:prefs:root=location_services

個人熱點:prefs:root=internet_tethering

關於本機: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

時間設定:prefs:root=general&path=date_and_time

facetime:prefs:root=facetime

設定:prefs:root=general

鍵盤設定:prefs:root=general&path=keyboard

icloud:prefs:root=castle

icloud備份:prefs:root=castle&path=storage_and_backup

語言:prefs:root=general&path=international

**: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

wall***** — prefs:root=wall*****

在ios開發過程中,有時我們想在應用內實現打**、發簡訊、開啟safari瀏覽器功能,具體常用功能如下: 

呼叫打**功能(此種方法會直接進行撥打**,**結束後會留在**介面)

if([[

openurl:[

nsurl

urlwithstring:

@"tel://135***x1111"

]])

if([[

openurl

:[nsurl

urlwithstring

:@"telprompt://135***x1111"]])

uiwebview *webview = [[uiwebview

alloc] init];

[webview loadrequest:[nsurlrequest

requestwithurl:

[nsurl

urlwithstring:@"tel://135***x1111"]]];

[self.view addsubview:webview];

if([[

openurl:[

nsurl

urlwithstring:

@"sms://135***x1111"

]])

if([[

canopenurl

:[nsurl

urlwithstring

:@""]])

iOS之應用內跳轉系統設定相關介面

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

iOS app跳轉系統設定頁面進行設定

定位服務設定介面 nsurl url nsurl urlwithstring prefs root location services 這樣就可以跳到系統設定的定位服務介面啦!我們繼續看幾個列子。facetime設定介面 nsurl url nsurl urlwithstring prefs roo...

安卓跳轉系統網路設定

全部網路設定 action wireless settings wifi設定 action wifi settings 3g流量設定 action data roaming settings 傳送intent,系統接收並跳轉.整體 startactivity new intent settings....