Stop video in UIWebView

前端 未结 6 1729
别那么骄傲
别那么骄傲 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:38

    Swift 4

    //  Halt anything in progress
    (contentViewController as! WebViewController).webView.loadHTMLString("Yoink://", baseURL: nil)
    

    needed in a windowController's windowShouldClose() method when I close a window

提交回复
热议问题