Created
November 11, 2011 18:59
-
-
Save AdamSwinden/1358867 to your computer and use it in GitHub Desktop.
Using URL scheme to open Settings.app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Turn on Location Services? | |
[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]]; | |
// Set up Twitter? | |
[NSURL URLWithString:@"prefs:root=TWITTER"]]; | |
// Hook up a Bluetooth device? | |
[NSURL URLWithString:@"prefs:root=General&path=Bluetooth"]]; | |
// Change app settings | |
[NSURL URLWithString:@"prefs:root=Apps&path=<#Your App Display Name#>"]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment