Guest User

Untitled

a guest
May 20th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. let urlText = "http://www.apple.com"
  2. let url = NSURL(string: urlText)!
  3. let safariViewController = SFSafariViewController(URL: url)
  4. self.navigationController?.pushViewController(safariViewController, animated: true)
  5.  
  6. let sfController = SFSafariViewController(URL: NSURL(string:"url")!)
  7. sfController.modalPresentationStyle = .FormSheet
  8. sfController.modalTransitionStyle = .CrossDissolve
  9. presentViewController(sfController, animated: false, completion: nil)
Add Comment
Please, Sign In to add comment