I know an app can launch other apps by using this code: [[UIApplication sharedApplication] openURL:appUrl];
. And I know the scheme of URL to open safari and mail, but I did some searches and found nothing about the scheme of settings.app.
Iphone – is it possible to open Settings App using openURL
iphonesettings
Related Question
- R – openUrl in landscape mode in iphone
- IOS How to exit current app after using UIApplication openURL to launch a browser
- Ios – Opening the Settings app from another app
- Ios – Open Url hosted using POST method in Safari using sharedApplication openURL method
- Ios – iPad Multitasking support requires these orientations
Best Solution
You can open settings apps programmatically try this(works only from iOS8 onwards).
If you are using Swift:
If you are using Objective-C
For other lower versions(less than iOS8) its not possible to programatically open settings app.