Skip to content

Instantly share code, notes, and snippets.

@scottsappen
Created July 1, 2013 15:29
Show Gist options
  • Save scottsappen/5901860 to your computer and use it in GitHub Desktop.
Save scottsappen/5901860 to your computer and use it in GitHub Desktop.
launch the Safari mobile browser from inside your iOS App
- (IBAction)LaunchSafariButtonClick:(UIButton *) sender {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://www.yoururl.com"]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment