Skip to content

Instantly share code, notes, and snippets.

@hudinwal
Last active August 15, 2016 07:50
Show Gist options
  • Save hudinwal/9f552ee53f5bcfe189805464db599032 to your computer and use it in GitHub Desktop.
Save hudinwal/9f552ee53f5bcfe189805464db599032 to your computer and use it in GitHub Desktop.
#import <SafariServices/SafariServices.h>
- (IBAction)safariButtonTapped:(UIBarButtonItem *)sender {
SFSafariViewController * safariViewController = NSURL * initialURL = [NSURL URLWithString:@"https://www.google.co.in"];
[[SFSafariViewController alloc]initWithURL:initialURL];
safariViewController.navigationItem.title = @"Google";
safariViewController.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Close" style:UIBarButtonItemStylePlain target:nil action:nil];
[self.navigationController pushViewController:safariViewController animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment