打开网页的操作

从APP切换到外部的浏览器

UIApplication.sharedApplication().openURL(NSURL(string:"http://www.baidu.com"))
内嵌一个webView 如今很流行

不多说了 

还有ios 9新出的 用SafariVIewController 内嵌PDF阅读模式

 let vc = SFSafariViewController(URL: NSURL(string:"http://, entersReaderIfAvailable: true))
        self.presentViewController(vc, animated: true, completion: nil )


还有UISearchController的应用

http://blog.csdn.net/icetime17/article/details/46883479 明天再补

你可能感兴趣的:(打开网页的操作)