Reputation: 919
I'm trying to display a HTML into a UiWebView, but it shows the HTML too large, and it shows only partial content of the view. I have tried to change web view content mode, but it doesn't work.
Many thanks.
Upvotes: 0
Views: 1074
Reputation: 25144
Try defining a viewport:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
Upvotes: 2