你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS 從應用中跳轉至系統設置頁面裡的多種設置頁面

iOS 從應用中跳轉至系統設置頁面裡的多種設置頁面

編輯:IOS開發綜合

我們在開發app過程中很多時候會需要設置系統權限,這時就需要在應用中跳轉至系統設置頁面權限設置頁面,以下是自己結合網上的資料總結的一些經驗:

直接從應用中跳轉至系統設置中這個應用的權限設置頁面
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];

if ([[UIApplication sharedApplication] canOpenURL:url]) {

[[UIApplication sharedApplication] openURL:url];

}

2.從應用中跳轉至系統其他設置頁面

如果只是跳轉到其他設置界面,只需要找到對應界面的URL參數即可,在這裡我以定位權限為例:

NSURL *url = [NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"];

if ([[UIApplication sharedApplication] canOpenURL:url]) {

[[UIApplication sharedApplication] openURL:url];

}

注:我自己在項目中測試時是可以直接如上跳轉至對應的界面,但我在網上有看到還需要在項目中的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
  • Wallpaper — prefs:root=Wallpaper
  • Wi-Fi — prefs:root=WIFI
  • Setting—prefs:root=INTERNET_TETHERING

會跳轉至通用界面 :

Phone — prefs:root=Phone

Photos — prefs:root=Photos

Usage — prefs:root=General&path=USAGE

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved