Stop video in UIWebView

前端 未结 6 1735
别那么骄傲
别那么骄傲 2020-12-28 21:29

In my iPad App I have a modal view (UIViewController with modal presentation style UIModalPresentationPageSheet)

Inside the view is a UIWeb

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-28 21:37

    In Swift method :

    override public func viewDidDisappear(animated: Bool) {
        super.viewDidAppear(animated)
        self.webView.loadHTMLString("", baseURL: nil)
    }
    

    thanks @alloc_iNit

提交回复
热议问题