在使用 UIWebView 的时候 (通常是阅读类的 App),会有点击图片放大的需求,那么可以通过设置 UIWebViewDelegate 来过滤请求,取出图片的 URL
extension ViewController: UIWebViewDelegate { func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool { if request.URLString.lowercaseString.hasSuffix(".png") || request.URLString.lowercaseString.hasSuffix(".jpg") || request.URLString.lowercaseString.hasSuffix(".gif") { println("Image URL is /(request.URLString)") return false } return true } }