我正在尝试创建一个iOS WebView应用程序,用于加载网站并允许用户登录并进行购买。我在加载页面时尝试显示进度条,但进度根本没有显示,我不知道哪里出错了。我也有一个刷新视图,但没有进度条,我无法确定这是否正常工作。这是我的代码,非常感谢任何帮助!
import UIKit
import WebKit
class ViewController: UIViewController, WKNavigationDelegate {
// Define Views
var webView: WKWebView!
var progressView: UIProgressView!
override func loadView() {
// Load Initial WebView
webView = WKWebView()
webView.navigationDelegate = self
view = webView
}
override func viewDidLoad() {
super.viewDidLoad()
// Create Progress View
progressView = UIProgressView(progressViewStyle: .default)
progressView.sizeToFit()
let progressButton = UIBarButtonItem(customView: progressView)
toolbarItems = [progressButton]
navigationController?.isToolbarHidden = false
//Set and Load Initial URL
let url = URL(string: "https://shop.nygmarose.com/")!
webView.load(URLRequest(url: url))
// Set WebView Config
webView.allowsBackForwardNavigationGestures = true
webView.scrollView.isScrollEnabled = true
webView.scrollView.bounces = true
// Allow Scroll to Refresh
let refreshControl = UIRefreshControl()
refreshControl.addTarget(self, action: #selector(ViewController.refreshWebView), for: UIControlEvents.valueChanged)
webView.scrollView.addSubview(refreshControl)
webView.addObserver(self, forKeyPath: #keyPath(WKWebView.estimatedProgress), options: .new, context: nil)
}
func refreshWebView() {
// On Scroll to Refresh, Reload Current Page
webView.reload()
}
override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
// Display Progress Bar While Loading Pages
if keyPath == "estimatedProgress" {
progressView.progress = Float(webView.estimatedProgress)
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}}
答案 0 :(得分:0)
答案 1 :(得分:0)
您是否考虑过强制使用主线程? UI更新仅在主线程上得到保证。
例如:
override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
// Display Progress Bar While Loading Pages
if keyPath == "estimatedProgress" {
// force main thread async call
DispatchQueue.main.async(execute: {
// do UI update
progressView.progress = Float(webView.estimatedProgress)
})
}
}