Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
div幅が100%のWebページをロードしていますが、ページがWebViewにあるはずのサイズよりも大きくロードされています。
デバイスが特定のサイズしかないことをWebページに伝える方法はありますか?
htmlメタタグを使用します。
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scaleable=no" />
htmlの代わりにObj-Cから同様のことをしたい場合:
webView.scalesPageToFit = YES;