From what I understand by using code like this:
NSURL* appUrl = [NSURL URLWithString: @"URL"];
[[UIApplication sharedApplication] openURL:appUrl];
I can open Map, YouTube, Safari, Mail, iTunes and the App Store, when a user say presses a button.
But I was wondering is it possible to open the Settings app with this method.
Basically, the first time the user opens my app I want a UIAlertView to pop up to let the user know that they can change a specific setting if they want, and either they press OK or they press settings to take them to the settings app.
I know that Apple do that in some situations, but is it possible for developers to do that?