草庐IT

iOS - 如何以编程方式创建 WKWebView 后退按钮?

coder 2023-09-20 原文

我正在尝试为我的 iOS WKWebView 应用程序创建一个后退按钮,这样当用户单击该按钮时,它会将他们带到上一个 WKWebView 页面。我找到了许多关于如何使用 IB 执行此操作的教程,但没有找到直接代码。这是我目前所拥有的:

原始 ViewController.swift:

import UIKit
import WebKit

class ViewController: UIViewController, WKNavigationDelegate {

    private var webView: WKWebView!

    let wv = WKWebView(frame: UIScreen.mainScreen().bounds) //needed for working webview

    self.webView = WKWebView(frame: frame)
    self.webView.navigationDelegate = self

    func rightbutton(text: String, action: Selector) {
        let rightButton = UIBarButtonItem(title: text, style: .Plain, target: self, action: action)
        self.navigationItem.rightBarButtonItem = rightButton
    }

    func action() {
        if self.webView.canGoBack {
            print ("Can go back")
            self.webView.goBack()
            self.webView.reload()

        } else {
            print ( "Can't go back")
        }
    }


    override func viewDidLoad() {
        super.viewDidLoad()
        guard let url =  NSURL(string: "http://communionchapelefca.org/app-home") else { return }
        wv.navigationDelegate = self
        wv.loadRequest(NSURLRequest(URL: url))
        view.addSubview(wv)


        webView.goBack()
        webView.reload()



        prefButton()
        //backButton()

        NSNotificationCenter.defaultCenter().addObserver(self,
            selector: "receiveNotification:",
            name: "BeaconServiceRegionEnter",
            object: nil)

        NSNotificationCenter.defaultCenter().addObserver(self,
            selector: "receiveNotification:",
            name: "BeaconServiceRegionUpdate",
            object: nil)

        NSNotificationCenter.defaultCenter().addObserver(self,
            selector: "receiveNotification:",
            name: "BeaconServiceRegionExit",
            object: nil)

    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    func prefButton () {
        let image = UIImage(named: "icon-pref128") as UIImage?
        let button   = UIButton(type: UIButtonType.Custom) as UIButton
        let screenSize: CGRect = UIScreen.mainScreen().bounds
        let screenWidth = screenSize.width
        let screenHeight = screenSize.height

        button.frame = CGRectMake(screenWidth * 0.85, screenHeight * 0.90, 56, 56) // (X, Y, Height, Width)
        button.setImage(image, forState: .Normal)
        button.addTarget(self, action: "buttonClicked:", forControlEvents:.TouchUpInside)
        self.view.addSubview(button)
    }

    func buttonClicked(sender:UIButton)
    {
        UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)
    }

    func receiveNotification(notification: NSNotification) {
        print(notification.userInfo)
    }

    func webView(webView: WKWebView, decidePolicyForNavigationAction navigationAction: WKNavigationAction, decisionHandler: (WKNavigationActionPolicy) -> Void) {
        if navigationAction.navigationType == .LinkActivated  {
            if let newURL = navigationAction.request.URL,
                host = newURL.host where !host.containsString("communionchapelefca.org") &&
                    UIApplication.sharedApplication().canOpenURL(newURL) {
                        if UIApplication.sharedApplication().openURL(newURL) {
                            print(newURL)
                            print("Redirected to browser. No need to open it locally")
                            decisionHandler(.Cancel)
                        } else {
                            print("browser can not url. allow it to open locally")
                            decisionHandler(.Allow)
                        }
            } else {
                print("Open it locally")
                decisionHandler(.Allow)
            }
        } else {
            print("not a user click")
            decisionHandler(.Allow)
        }
    }

}

有什么建议吗?提前致谢。

编辑:附上整个 ViewController 而不是代码片段。

EDIT2:k8mil 的回答很接近,因为他的回答没有加载初始 URL。以下是他的回答的唯一调整:

private func createWebView() {
        guard let url = NSURL(string: "http://communionchapelefca.org/app-home") else { return }
        let frame  = UIScreen.mainScreen().bounds // or different frame created using CGRectMake(x,y,width,height)
        self.webView = WKWebView(frame: frame)
        self.webView.navigationDelegate = self
        self.webView.loadRequest(NSURLRequest(URL: url))
        self.view.addSubview(self.webView)
    }

最佳答案

尝试在您的 WKWebView 实例上调用 webView.goBack() 方法,而不是 WKWebView.goBack()。此外,在 goBack() 之后,您可以调用 webView.reload() 方法来确保您位于正确的页面上。

我稍微修改了你的代码

import UIKit
import WebKit

class ViewController: UIViewController, WKNavigationDelegate {

private var webView: WKWebView!

override func viewDidLoad() {
    super.viewDidLoad()
    guard let url = NSURL(string: "http://communionchapelefca.org/app-home") else {
        return
    }

    //create WebView and Back button
    createWebView()
    backButton()


    prefButton()


    NSNotificationCenter.defaultCenter().addObserver(self,
            selector: "receiveNotification:",
            name: "BeaconServiceRegionEnter",
            object: nil)

    NSNotificationCenter.defaultCenter().addObserver(self,
            selector: "receiveNotification:",
            name: "BeaconServiceRegionUpdate",
            object: nil)

    NSNotificationCenter.defaultCenter().addObserver(self,
            selector: "receiveNotification:",
            name: "BeaconServiceRegionExit",
            object: nil)

}


private func createWebView() {
    let frame  = UIScreen.mainScreen().bounds // or different frame created using CGRectMake(x,y,width,height)
    self.webView = WKWebView(frame: frame)
    self.webView.navigationDelegate = self
    self.view.addSubview(self.webView)
}

func addBackButton(text: String, action: Selector) {
    //this function will add Button on your navigation bar e

    let rightButton = UIBarButtonItem(title: text, style: .Plain, target: self, action: action)
    self.navigationItem.rightBarButtonItem = rightButton
}


override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

func prefButton() {
    let image = UIImage(named: "icon-pref128") as UIImage?
    let button = UIButton(type: UIButtonType.Custom) as UIButton
    let screenSize: CGRect = UIScreen.mainScreen().bounds
    let screenWidth = screenSize.width
    let screenHeight = screenSize.height

    button.frame = CGRectMake(screenWidth * 0.85, screenHeight * 0.90, 56, 56) // (X, Y, Height, Width)
    button.setImage(image, forState: .Normal)
    button.addTarget(self, action: "buttonClicked:", forControlEvents: .TouchUpInside)
    self.view.addSubview(button)
}

func backButton() {
    let image = UIImage(named: "icon-back") as UIImage?
    let button = UIButton(type: UIButtonType.Custom) as UIButton
    let screenSize: CGRect = UIScreen.mainScreen().bounds
    let screenWidth = screenSize.width
    let screenHeight = screenSize.height

    button.frame = CGRectMake(screenWidth * 0.85, screenHeight * 0.90, 56, 56) // (X, Y, Height, Width)
    button.setImage(image, forState: .Normal)
    button.addTarget(self, action: "customGoBack:", forControlEvents: .TouchUpInside)
    self.view.addSubview(button)
}

func customGoBack(sender: UIButton) {
    if self.webView.canGoBack {
        print("Can go back")
        self.webView.goBack()
        self.webView.reload()
    } else {
        print("Can't go back")
    }
}

func buttonClicked(sender: UIButton) {
    UIApplication.sharedApplication().openURL(NSURL(string: UIApplicationOpenSettingsURLString)!)
}

func receiveNotification(notification: NSNotification) {
    print(notification.userInfo)
}

func webView(webView: WKWebView, decidePolicyForNavigationAction navigationAction: WKNavigationAction, decisionHandler: (WKNavigationActionPolicy) -> Void) {
    if navigationAction.navigationType == .LinkActivated {
        if let newURL = navigationAction.request.URL,
        host = newURL.host where !host.containsString("communionchapelefca.org") &&
                UIApplication.sharedApplication().canOpenURL(newURL) {
            if UIApplication.sharedApplication().openURL(newURL) {
                print(newURL)
                print("Redirected to browser. No need to open it locally")
                decisionHandler(.Cancel)
            } else {
                print("browser can not url. allow it to open locally")
                decisionHandler(.Allow)
            }
        } else {
            print("Open it locally")
            decisionHandler(.Allow)
        }
    } else {
        print("not a user click")
        decisionHandler(.Allow)
    }
}

}

此外,您不需要 WKWebView 的另一个实例,因为您之前已在 :

private var webView : WKWebView!

所以没有必要:

wv.navigationDelegate = self
wv.loadRequest(NSURLRequest(URL: url))  
view.addSubview(wv)

对我来说很管用。

希望这对你有帮助:)

关于iOS - 如何以编程方式创建 WKWebView 后退按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36486918/

有关iOS - 如何以编程方式创建 WKWebView 后退按钮?的更多相关文章

  1. ruby - 如何在 Ruby 中顺序创建 PI - 2

    出于纯粹的兴趣,我很好奇如何按顺序创建PI,而不是在过程结果之后生成数字,而是让数字在过程本身生成时显示。如果是这种情况,那么数字可以自行产生,我可以对以前看到的数字实现垃圾收集,从而创建一个无限系列。结果只是在Pi系列之后每秒生成一个数字。这是我通过互联网筛选的结果:这是流行的计算机友好算法,类机器算法:defarccot(x,unity)xpow=unity/xn=1sign=1sum=0loopdoterm=xpow/nbreakifterm==0sum+=sign*(xpow/n)xpow/=x*xn+=2sign=-signendsumenddefcalc_pi(digits

  2. python - 如何使用 Ruby 或 Python 创建一系列高音调和低音调的蜂鸣声? - 2

    关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。

  3. ruby - 如何以所有可能的方式将字符串拆分为长度最多为 3 的连续子字符串? - 2

    我试图获取一个长度在1到10之间的字符串,并输出将字符串分解为大小为1、2或3的连续子字符串的所有可能方式。例如:输入:123456将整数分割成单个字符,然后继续查找组合。该代码将返回以下所有数组。[1,2,3,4,5,6][12,3,4,5,6][1,23,4,5,6][1,2,34,5,6][1,2,3,45,6][1,2,3,4,56][12,34,5,6][12,3,45,6][12,3,4,56][1,23,45,6][1,2,34,56][1,23,4,56][12,34,56][123,4,5,6][1,234,5,6][1,2,345,6][1,2,3,456][123

  4. ruby - 解析 RDFa、微数据等的最佳方式是什么,使用统一的模式/词汇(例如 schema.org)存储和显示信息 - 2

    我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i

  5. ruby - 使用 Vim Rails,您可以创建一个新的迁移文件并一次性打开它吗? - 2

    使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta

  6. ruby-on-rails - 无法使用 Rails 3.2 创建插件? - 2

    我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby​​1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在

  7. ruby - 如何使用 RSpec::Core::RakeTask 创建 RSpec Rake 任务? - 2

    如何使用RSpec::Core::RakeTask初始化RSpecRake任务?require'rspec/core/rake_task'RSpec::Core::RakeTask.newdo|t|#whatdoIputinhere?endInitialize函数记录在http://rubydoc.info/github/rspec/rspec-core/RSpec/Core/RakeTask#initialize-instance_method没有很好的记录;它只是说:-(RakeTask)initialize(*args,&task_block)AnewinstanceofRake

  8. ruby - 为什么 SecureRandom.uuid 创建一个唯一的字符串? - 2

    关闭。这个问题需要detailsorclarity.它目前不接受答案。想改进这个问题吗?通过editingthispost添加细节并澄清问题.关闭8年前。Improvethisquestion为什么SecureRandom.uuid创建一个唯一的字符串?SecureRandom.uuid#=>"35cb4e30-54e1-49f9-b5ce-4134799eb2c0"SecureRandom.uuid方法创建的字符串从不重复?

  9. ruby - 如何验证 IO.copy_stream 是否成功 - 2

    这里有一个很好的答案解释了如何在Ruby中下载文件而不将其加载到内存中:https://stackoverflow.com/a/29743394/4852737require'open-uri'download=open('http://example.com/image.png')IO.copy_stream(download,'~/image.png')我如何验证下载文件的IO.copy_stream调用是否真的成功——这意味着下载的文件与我打算下载的文件完全相同,而不是下载一半的损坏文件?documentation说IO.copy_stream返回它复制的字节数,但是当我还没有下

  10. ruby - 有人可以帮助解释类创建的 post_initialize 回调吗 (Sandi Metz) - 2

    我正在阅读SandiMetz的POODR,并且遇到了一个我不太了解的编码原则。这是代码:classBicycleattr_reader:size,:chain,:tire_sizedefinitialize(args={})@size=args[:size]||1@chain=args[:chain]||2@tire_size=args[:tire_size]||3post_initialize(args)endendclassMountainBike此代码将为其各自的属性输出1,2,3,4,5。我不明白的是查找方法。当一辆山地自行车被实例化时,因为它没有自己的initialize方法

随机推荐