5

我用 Xcode 和 Swift 制作了一个 iOS 应用程序。

我想在 Safari 浏览器中打开特定的超链接,在 WebView 本身中还有其他的。

为此,我必须检查何时单击超链接。

这是我到目前为止的代码:

//
//  PushViewController.swift
//  App
//
//

import UIKit
class PushViewController: UIViewController, UIWebViewDelegate {
    @IBOutlet var openpushmessage: UIWebView!

    var weburl:String = "http://www.example.com"

    override func viewDidLoad() {
        super.viewDidLoad()

        let url: NSURL = NSURL(string: weburl)!
        let requestURL: NSURLRequest = NSURLRequest(URL: url)
        openpushmessage.loadRequest(requestURL)
    }
    override func webView(_ webView: UIWebView, shouldStartLoadWithRequest request: URLRequest, navigationType: UIWebViewNavigationType) -> Bool {
        if navigationType == .linkClicked
        {
            print("You clicked a hypelink!")
        }
        return true
    }
}

中的代码从我的服务器viewDidLoad()打开加载主 URL ( http://www.example.com )。这很好用。

override fun webView[…]应该检测是否单击了超链接,然后print("You clicked a hypelink!").

但不幸的是,我收到以下错误:

我的代码的一个错误和一个警告

我究竟做错了什么?如何摆脱这些错误?

4

3 回答 3

7

请试试

快速 3.0

 public func webView(_ webView: UIWebView, shouldStartLoadWith request: URLRequest, navigationType: UIWebViewNavigationType) -> Bool
        {
         if navigationType == .linkClicked
         {

            }
            return true;
        }

迅捷2.2

internal func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool
    {
        if navigationType == .LinkClicked
        {

        }
        return true;
    }
于 2017-02-08T11:35:21.877 回答
5

这是可行的解决方案(Xcode 7.3.1 和 Swift 2.2):

func webView(webView: UIWebView, shouldStartLoadWithRequest request: NSURLRequest, navigationType: UIWebViewNavigationType) -> Bool {

    if request.URL?.query?.rangeOfString("target=external") != nil {
        if let url = request.URL {
            UIApplication.sharedApplication().openURL(url)
            return false
        }
    }
    return true
}

非常感谢freelancer.com 的 danhhgl

于 2017-02-10T18:45:15.467 回答
0

我认为您可以使用以下代码解决:

 function reportBackToObjectiveC(string)
 {
 var iframe = document.createElement("iframe");
 iframe.setAttribute("src", "callback://" + string);
 document.documentElement.appendChild(iframe);
 iframe.parentNode.removeChild(iframe);
 iframe = null;
 }

var links = document.getElementsByTagName("a");
for (var i=0; i<links.length; i++) {
links[i].addEventListener("click", function() {
    reportBackToObjectiveC("link-clicked");
}, true);
}

在ios代码中:

if ([[[request URL] scheme] isEqualToString:@"callback"]) {
[self setNavigationLeavingCurrentPage:YES];
return NO;
}

您可以从此处查看更多详细信息:

于 2017-02-08T09:08:30.230 回答