At one point in my app, I would like to redirect the user to the official Settings app. If possible, I also want go straight to the Network section within the Settings app.

I think what I need is the Settings app's url scheme and the format to construct my request. But I doubt that calling such an official app is forbidden.

Can anyone can help me?

link|improve this question

74% accept rate
There isn't such a URL scheme (for general public). – KennyTM Dec 21 '10 at 6:39
There is now in iOS5, see my answer below. – mpstx Nov 9 '11 at 16:29
1  
Can you please link the documentation, what ensures that it is public? Thanks. – Marinov Iván Dec 5 '11 at 15:17
Find a list of known urls of the settings app in this question: stackoverflow.com/questions/8246070/… – letsdev-cs Feb 6 at 11:07
feedback

1 Answer

up vote 18 down vote accepted

This is now possible in iOS 5 using the 'prefs:' url scheme. It works from a web page or from an app.

example urls:

prefs:root=General
prefs:root=General&path=Network

sample usage:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General"]]
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General&path=Network"]]
link|improve this answer
2  
dude, you are awesome! after some poking around i found this one for twitter settings: prefs:root=TWITTER – jasongregori Nov 11 '11 at 3:54
Thanks! Accepted! :D – diwup Nov 11 '11 at 5:29
1  
Any idea if these calls are classified as 'undocumented'? I couldn't find them in the docs. How did you find them? Cheers, – MattyG Nov 14 '11 at 22:07
6  
@MattyG yes, definitely. in fact, i just read this article that said these no longer work in iOS 5.1: macstories.net/news/… – jasongregori Dec 5 '11 at 21:37
3  
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:41
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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