直接從應用中跳轉至系統設定中這個應用的許可權設定頁面
}2.從應用中跳轉至系統其他設定頁面
如果只是跳轉到其他設定介面,只需要找到對應介面的url引數即可,在這裡我以定位許可權為例:
nsurl *url = [nsurl urlwithstring:@"prefs:root=location_services"];
}注:我自己在專案中測試時是可以直接如上跳轉至對應的介面,但我在網上有看到還需要在專案中的info中新增 url types,網友展示的如下:
實際到底需不需要新增這一步,我也沒弄清楚,只是我自己的沒有這一步也能成功跳轉,在這裡僅供有需要的朋友參考。
下邊是一些介面的url引數配置:
關於手機 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
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
vpn — prefs:root=general&path=network/vpn
wall***** — prefs:root=wall*****
wi-fi — prefs:root=wifi
setting—prefs:root=internet_tethering
會跳轉至通用介面 :
phone — prefs:root=phone
photos — prefs:root=photos
usage — prefs:root=general&path=usage
iOS8跳轉到系統設定頁
大家都知道,在ios5.0時時可以跳轉到系統的設定頁的。但是在5.1之後就不可以了。下面說下ios8是如何跳轉的,以下是 objc view plain copy print 2015 07 22補充 跳轉到系統wifi設定頁面 objc view plain copy print nsurl ur...
iOS開發之跳轉至設定頁面小功能
有時候當我們應用中的網路斷開了,我們需要提醒使用者到設定中檢查網路。這個時候我們可以直接從應用中跳到設定中的wifi介面。其實應用中有很多功能需要我們從自己的應用中跳轉到設定的某個頁面中。下面就總結一些直接從應用中跳轉到指定設定介面中的功能。在設定跳轉之前,我們需要配置一下info.plist檔案,...
IOS應用內跳轉到系統設定
ios應用內跳轉到系統設定 設定跳轉有三種方式,每一種的使用場景都不同。並且你跳轉到系統中自己應用下面設定的時候,你的應用要提前至少申請了某乙個許可權,如 通訊錄,通知,定位等 否則,會引起崩潰。本篇針對ios7 ios8 ios9 ios10,來介紹其中區別。一 跳轉方法 二 跳轉到 去?系統的設...