gpt4 book ai didi

SWIFT 无法使用第二个按钮在 UIWebView 中打开第二个 URL

转载 作者:行者123 更新时间:2023-11-28 09:12:54 25 4
gpt4 key购买 nike

我是菜鸟吗?无法获得在 SWIFT 中打开第二个 URL 的按钮。应用程序打开,打开时在 WebView 中加载 URL。现在我想要一个按钮在单击时在 WebView 中打开另一个 url。 (后退按钮,前进按钮和重新加载没有概率)......请帮忙,谢谢

导入 UIKit

类 View Controller :UIViewController {

@IBOutlet var webView: UIWebView!

var URLPath = "http://bandersnatchorlando.com/x19559"

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.

loadAddressURL()

}

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


func loadAddressURL(){
let requestURL = NSURL(string:URLPath)
let request = NSURLRequest(URL:
requestURL)
webView.loadRequest(request)
}

@IBOutlet weak var reLoad: UIButton!
}

最佳答案

假设您的 Storyboard 中已经有另一个按钮,并且它链接到 @IBAction 然后在 Action 中:

let url = NSURL(string:"http://myotherurl.com")
let request = NSURLRequest(URL:url)
webView.loadRequest(request)

关于SWIFT 无法使用第二个按钮在 UIWebView 中打开第二个 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28573490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com