Skip to content

Instantly share code, notes, and snippets.

@huobazi
Created December 2, 2011 01:58
Show Gist options
  • Save huobazi/1421368 to your computer and use it in GitHub Desktop.
Save huobazi/1421368 to your computer and use it in GitHub Desktop.
在iOS5内打开系统设置页面
- (IBAction)btnSystemSettingTouchUpInside:(id)sender {
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"] ];
}
- (IBAction)btnTwitterSettingTouchUpInside:(id)sender {
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"prefs:root=TWITTER"] ];
}
- (IBAction)btnBlueToothSettingTouchUpInside:(id)sender {
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"prefs:root=General&path=BlueTooth"] ];
}
- (IBAction)btnMyAppSettingTouchUpInside:(id)sender {
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"prefs:root=Apps&path=MyAppDisplayName"] ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment