Skip to content

Instantly share code, notes, and snippets.

@onlyyoujack
Forked from AdamSwinden/gist:1358867
Created January 27, 2012 15:11
Show Gist options
  • Save onlyyoujack/1689218 to your computer and use it in GitHub Desktop.
Save onlyyoujack/1689218 to your computer and use it in GitHub Desktop.
Using URL scheme to open Settings.app
// 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