Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ok, i know that there are many question about it, but they are all from many time ago.

So...I know that it is possible because the Map app does it.

In the Map app if I turn off the localization for this app, it send me a message, and if I press ok, the "Settings App" will be open. And my question is, how is this possible? How can i open the "Setting app" from my own app?

Basically i need to do the same thing, if the user turn off the location for my app, then i'll show him a message saying something that will open the "Setting app"

I really appreciate your answers, i mean it.

share|improve this question

2 Answers

up vote 19 down vote accepted

You can not. As you said this has been covered many times and that pop up asking you to turn on location services is supplied by Apple and not by the App itself. That is why it is able to the open the settings application.

Not to be annoying or anything but here are just a few results from the following google search site:stackoverflow.com iphone open settings app

is it possible to open Settings App using openURL?

Programmatically opening the settings app (iPhone)

How can I open the Settings app when the user presses a button?

iPhone: Opening Application Preferences Panel From App

Open UIPickerView by clicking on an entry in the app's preferences - How to?

Open the Settings app?

share|improve this answer
thx too much for your answer i have not read in anywhere the thing "supplied by Apple". With that i can convince my client. Thanks! – FelipeDev.- Apr 13 '11 at 21:21
If you need a more authoritative answer, you might try asking on the Apple Developer forums <developer.apple.com/devforums/>; or filing a bug at <developer.apple.com/bugreporter/>; — if it's a known issue it should come back as "behaves correctly" or a duplicate of the original bug. – Vincent Gable Aug 15 '11 at 20:40
2  
Off topic, but your Cyanide & Happiness icon rocks! – NicolasMiari Jun 12 '12 at 15:32
I agree if you are willing to bend/break the rules. – Joe Mar 29 at 11:36

You can use this on iOS 5.0 and later: This no longer works.

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"]];
share|improve this answer
2  
@MarkGranoff No, it seems to be technically undocumented, but it's not as bad as a normal undocumented API, since it's just a URL Scheme. You can check for it with canOpenURL: first. Also, there's a thread about it here: devforums.apple.com/message/543818 – davidcann Oct 18 '11 at 20:23
2  
You can get to different areas in settings according to this article. For example this URL will take you to Bluetooth settings prefs:root=General&path=Bluetooth – progrmr Nov 10 '11 at 14:02
5  
it does not work anymore with sdk ios 5.1 :( – crazywood Mar 21 '12 at 13:21
3  
Apple has stated that this wasn't a public API, and is no longer supported. There is a bug filed on this issue, number 11253669. – Don Wilson May 8 '12 at 4:57
1  
I just saw that this works in Strava app. Turn off Bluetooth & then turn it on in app. Then it asks to got to settings app & it goes directly to Bluetooth settings. This is for iOS5.1. Is there a way to find out what scheme they are using? – Ants Dec 1 '12 at 0:57
show 4 more comments

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.