[Solved] Google label is not sharp (WKWebView)

I have found the solution. Just set customUserAgent : webView.customUserAgent = “Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1” solved Google label is not sharp (WKWebView)

[Solved] How to Create Two WkWebView

var item = WKWebView() item.frame = CGRectMake(0, 0, self.view.bounds.width, 200.) self.view.addSubview(item) item = WKWebView() item.frame = CGRectMake(0, self.view.bounds.height-200., self.view.bounds.width, 200.) self.view.addSubview(item) This code add WKWebView at the top and bottom of self.view. 9 solved How to Create Two WkWebView