Using WKWebView
in place of UIWebView
, I noticed that the contents of the WKWebView
were massively scaled down as co
I had the same problem. I just had to put
<meta name="viewport" content="initial-scale=1.0" />
into my header block and that solved it for me. Looks like WKWebView
behaves more like Mobile Safari than a UIWebView
does, so you need to set the viewport if you want to control scaling or general sizing.