I've recently discovered the awesome iOS5 custom Settings URL Scheme, which can be explained in detail at this great website:

http://handleopenurl.com/scheme/apple-settings-app

I've found this to work, directing the user to the Settings app from my application:

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

But cannot seem to route directly to the Restrictions path via the path parameter:

    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General&path=Restrictions"]];

Has anyone found documentation on this or been able to make this work? Any insight would be greatly appreciated. I'm trying to take the user to enable in-app purchasing, and would rather not have the user manually click on Restrictions (not very obvious).

Thanks!

link|improve this question

feedback

1 Answer

up vote 32 down vote accepted

It's possible that the path component has a different name than the actual section, but it's also possible that you can't currently access that section straight from a URL. I found a list of possible URLs and Restrictions is not on it, maybe it's just not found out yet.

List of currently known URLs in the Settings app:

  • prefs:root=General&path=About
  • prefs:root=General&path=ACCESSIBILITY
  • prefs:root=AIRPLANE_MODE
  • prefs:root=General&path=AUTOLOCK
  • prefs:root=General&path=USAGE/CELLULAR_USAGE
  • prefs:root=Brightness
  • prefs:root=General&path=Bluetooth
  • prefs:root=General&path=DATE_AND_TIME
  • prefs:root=FACETIME
  • prefs:root=General
  • prefs:root=General&path=Keyboard
  • prefs:root=CASTLE
  • prefs:root=CASTLE&path=STORAGE_AND_BACKUP
  • prefs:root=General&path=INTERNATIONAL
  • prefs:root=LOCATION_SERVICES
  • prefs:root=ACCOUNT_SETTINGS
  • prefs:root=MUSIC
  • prefs:root=MUSIC&path=EQ
  • prefs:root=MUSIC&path=VolumeLimit
  • prefs:root=General&path=Network
  • prefs:root=NIKE_PLUS_IPOD
  • prefs:root=NOTES
  • prefs:root=NOTIFICATIONS_ID
  • prefs:root=Phone
  • prefs:root=Photos
  • prefs:root=General&path=ManagedConfigurationList
  • prefs:root=General&path=Reset
  • prefs:root=Sounds&path=Ringtone
  • prefs:root=Safari
  • prefs:root=General&path=Assistant
  • prefs:root=Sounds
  • prefs:root=General&path=SOFTWARE_UPDATE_LINK
  • prefs:root=STORE
  • prefs:root=TWITTER
  • prefs:root=General&path=USAGE
  • prefs:root=VIDEO
  • prefs:root=General&path=Network/VPN
  • prefs:root=Wallpaper
  • prefs:root=WIFI
  • prefs:root=INTERNET_TETHERING
link|improve this answer
Henri, thanks for your prompt response. This is a much more verbose listing of url schemes for Settings that I was able to find. I'll be sure to do some research and post back if I can find anything specifically regarding the "Restrictions" path. Cheers! – kturner Nov 24 '11 at 5:57
No problem, if you end with the same list as I did, make sure to mark my answer as accepted to let others also know. – Henri Normak Nov 24 '11 at 9:14
1  
@NikBurns do you have any reference for that? – Niklas Feb 6 at 12:42
14  
Just a kind warning, idownloadblog.com/2011/11/29/iphone-5-1-disables-shortcuts said that all url schemes to iOS settings will be removed in iOS5.1 (so urls like prefs:root=General&path=Network will no longer work) So, please aware. – Hlung Feb 23 at 16:44
1  
They are not completely removed you just have to put these URL links in a button in an UIAlertView. So simply put a warning in the UIAlertView that the app will go to background and settings will open and then OK, and Cancel etc. – zambono 2 days ago
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.