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

來源:互聯網
上載者:User

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

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.