ios - 加载 webview 时加载动画卡住/卡住

标签 ios swift animation wkwebview

我加载进度加载动画,当来自 Alamofire 的响应到来时,我使用部分响应来构建我需要在 wkwebview 中加载的完整 url,然后触发 webview.load(..)。

我的问题是,一旦 webview.load(..) 开始发生,进度加载动画就会卡住并一直卡住,直到我 hide() 它。

我怎样才能让我的动画在 webview 开始加载页面的同时继续移动?

MyViewController.swift

class MyViewController: UIViewController, WKScriptMessageHandler {

    var webView: WKWebView?

    @IBOutlet weak var webViewContainer: UIView!

    var webConfig:WKWebViewConfiguration {
        get {
            let webCfg:WKWebViewConfiguration = WKWebViewConfiguration()

            let userController:WKUserContentController = WKUserContentController()
            userController.add(self, name: "mycontroller")

            webCfg.userContentController = userController;

            return webCfg;
        }
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        webView = WKWebView (frame: webViewContainer.bounds, configuration: webConfig)
        webView!.autoresizingMask = [.flexibleWidth, .flexibleHeight]
        webView?.scrollView.isScrollEnabled = false
        webViewContainer.addSubview(webView!)

        loadWebview()
    }

    func loadWebview(){
        Loading.shared.show(self.view)

        Alamofire.request(MYAPI, method: .post, parameters: parameters, encoding: JSONEncoding.default, headers: nil)
            .responseJSON { response in
                let url = URL(string: "https://path-to-load/\(response.key)")
                    self.webView!.load(URLRequest(url: url!))
        }

    }

    func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
        let message = message.body as! [String:AnyObject]
        let event = message["event"] as? String ?? "empty"

        switch (event){
        case "loading-finished":
            DispatchQueue.main.async {
                Loading.shared.hide(animated: true)
            }
            break
        default:
            break
        }
    }


}

Loading.swift

public class Loading {
        var blurredEffectView = UIVisualEffectView(effect: UIBlurEffect(style: .light))
        let imageView = UIImageView(image: UIImage(named: "loading_image"))

        class var shared: Loading {
            struct LoadingStatic {
                static let instance: Loading = Loading()
            }
            return LoadingStatic.instance
        }

        init() {
            imageView.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
            imageView.contentMode = .scaleToFill
            blurredEffectView.contentView.addSubview(imageView)
        }

        public func show(_ view: UIView, inView: Bool = false) {
            var window: UIView!
            if inView == false, let w = view.window {
                window = w
            } else {
                window = view
            }

            if blurredEffectView.superview == window {
                return
            }

            let rotation: CABasicAnimation = CABasicAnimation(keyPath: "transform.rotation.z")
            rotation.toValue = NSNumber(value: Double.pi * 2)
            rotation.duration = 1
            rotation.isCumulative = true
            rotation.repeatCount = Float.greatestFiniteMagnitude
            imageView.layer.add(rotation, forKey: "rotationAnimation")

            imageView.center = window.center
            blurredEffectView.frame = window.bounds
            window.addSubview(blurredEffectView)

            blurredEffectView.fadeIn()
        }
    }

最佳答案

可能的解决方案:

1) 当您想要全屏加载时,在应用程序窗口中进行加载(默认情况下 inview == false),并在 viewDidLoad 中保留 loadWebview()

public func show(_ view: UIView? = nil, inView: Bool = false) {
        var window: UIView!
        if inView == false, let w = UIApplication.shared.delegate?.window {
            window = w
        } else {
            window = view
        }
     ...

2) 将 loadWebview() 从 viewDidLoad 移动到 viewDidAppear

这里移动的重要部分是 Loading.shared.show(self.view)。在完成布局之前,我无法为 View 的组件设置动画(这恰好发生在 viewDidAppear() 中)。

更多详细信息: viewDidLoad 在 MyViewController 已初始化并已初始化主视图之后但在 View 呈现给 UI 之前被调用。这意味着 viewDidLoad 允许我在显示给用户进行交互之前设置 ViewController 和 View。

虽然这是一个不错且快速的解决方案,但在某些情况下,这可能无法按预期工作,因为 viewDidAppear 可以被调用两次,因此会显示两次加载 View ,这将导致奇怪的用户体验。

关于ios - 加载 webview 时加载动画卡住/卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54902932/

相关文章:

ios - SWRevealViewController开启方法

ios - Redux:最佳实践(使用 Swift)

swift - ARKit 无法在垂直平面上正确旋转 SCNNode

ios - 将数据从 ViewController 转发到 ContainerView

animation - 使用 imagemagick 制作动画 gif,它放大我的图像并将每一帧放在角落

ios - 关闭按钮在 Swift Playground 中不起作用

iOS Today 扩展透明背景色

iOS - 应用程序中的文件夹动画

wordpress - 无法禁用图层动画 - Revolution Slider

ios - UINavigationBar 隐藏在 statusBar 下