Jump to system settings in iOS apps

Source: Internet
Author: User

Jump to system settings in iOS apps

Use the following methods in versions earlier than iOS5: [This method cannot be used after IOS5.1 +. The iOS8 redirection method has been found below. iOS7 is exploring. You are welcome to give your opinion]

Use the URL Scheme method to open the built-in Settings. The Code is as follows:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]]; 

 

The URL Scheme of the built-in Settings is as follows:

 

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 = icationications_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

VPN-prefs: root = General & path = Network/VPN

Wallpaper-prefs: root = Wallpaper

Wi-Fi-prefs: root = WIFI


Use the following methods in iOS8:

 

NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];  if ([[UIApplication sharedApplication] canOpenURL:url]) {     [[UIApplication sharedApplication] openURL:url];  }  

No solutions have been found for iOS7. You are welcome to discuss more .....

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.