I am making a iPhone app that needs to make a UIwebview that can only scroll vertically(I need to disable to the horizontal scrolling), I can't really do it from the website because that's not in my control. How to implement that?

link|improve this question
possible duplicate of How to disable UIWebview horizontal scrolling? – PengOne Jul 27 '11 at 21:33
feedback

1 Answer

You can do this by adding the following in the section of your HTML:

<meta name="viewport" content="width=device-width" />

Do this either before you load the file into the web view or use stringByEvaluatingJavaScriptFromString:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.