Webview中的内容模糊-IPHONE X

时间:2019-03-04 13:32:01

标签: ios swift iphone-x

Blurr content

我的应用程序中有一个Webview,该浏览器在Iphone 8之前都可以正常工作。在Iphone X中,Webview中的内容非常模糊,字体不清晰,并且图像带有像素。关于如何解决此问题的任何想法(我已经在情节提要中使用了安全区域)。下面是我的Webview的代码

    //Example URL
    let url = URL(string: "https://play.google.com/store/apps/details?id=com.google.android.webview&hl=en")
    webView = WKWebView(frame: self.view.frame)
    webView.translatesAutoresizingMaskIntoConstraints = false
    webView.isUserInteractionEnabled = true
    webView.navigationDelegate = self
    self.view.addSubview(self.webView)
    let request = URLRequest(url: url!)
    webView.load(request)



    self.webView.addSubview(self.Activity)
    self.Activity.startAnimating()
    self.webView.navigationDelegate = self
    self.Activity.hidesWhenStopped = true

    webViewContainer.addSubview(webView!)

0 个答案:

没有答案