//MARK: - UIWebViewDelegate extension ViewController: UIWebViewDelegate { func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool { if let scheme = request.URL?.scheme { if scheme.hasPrefix("http") || scheme.hasPrefix("https") { //ページ内アンカー移動 let anchor = request.URL?.absoluteString.componentsSeparatedByString("#") if ancho