Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
There isn't such a URL scheme (for general public). – KennyTM Dec 21 '10 at 6:39
1  
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/… – cschuff Feb 6 '12 at 11:07

2 Answers

As noted in the comments below, this is no longer possible in iOS version 5.1 and after.

If you are on iOS 5.0, the following applies:

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"]]
share|improve this answer
4  
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 – Di Wu 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
10  
@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
9  
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 '12 at 16:41
show 1 more comment
up vote 4 down vote accepted

Bad news: As @Hlung and @jasongregori suggested, for iDevices whose OS version >= iOS 5.1, there is once again NO official/documented way to call the built-in Settings app from a third-party app. Period.

share|improve this answer
6  
I'm agree with this and I also can't make this calls to work.. but some apps are still doing this calls (I'm running iOs 6.1), like Twitter and Flipboard when you are in airplane mode... how do they do it? – Omer Feb 7 at 12:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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