Skip to content

Instantly share code, notes, and snippets.

@mikekavouras
Created August 4, 2016 22:08
Show Gist options
  • Save mikekavouras/820d93860e80532783d7e4475c96369e to your computer and use it in GitHub Desktop.
Save mikekavouras/820d93860e80532783d7e4475c96369e to your computer and use it in GitHub Desktop.
func showWebpage(URL: NSURL) {
let vc = SFSafariViewController(URL: URL)
let navController = UINavigationController(rootViewController: vc)
navController.navigationBarHidden = true
RootViewController.sharedInstance.presentViewController(navController, animated: true, completion: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment