Stop video in UIWebView

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

    Do integrate following code to sort out the problem.

        -(void)viewWillDisappear:(BOOL)animated
        {
            [webView loadHTMLString:nil baseURL:nil];
        }
    

提交回复
热议问题