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.
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- how do you prevent page scroll in textarea on mobi
- Custom UITableview cell accessibility not working
相关文章
- Could I create “Call” button in HTML 5 IPhone appl
- Unable to process app at this time due to a genera
- How do you detect key up / key down events from a
- “Storyboard.storyboard” could not be opened
- Open iOS 11 Files app via URL Scheme or some other
- Can keyboard of type UIKeyboardTypeNamePhonePad be
- Can not export audiofiles via “open in:” from Voic
- XCode 4.5 giving me “SenTestingKit/SenTestKit.h” f
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.
Swift 4 version:
Opening settings apps programmatically is possible only from iOS 8. So, use the following code from http://code-ios.blogspot.in/2014/10/opening-settings-app-from-another-app.html
You can use this in iOS versions 5.0 - 5.0.1. It was then deprecated in iOS 5.1.