Why are there a view web pages when shown in UIWebView that are zoomable and some not? How do I make all of them zoomable? I can zoom for a few pages, but not all
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Some pages are configured with special meta tags that tell webkit ‘I’ve rendered this content for mobile. Don’t scale it’.
If you view such a page, there is no way to enable zooming through UIWebView. The content is saying “I’m already scaled!” and UIWebView will refuse to scale it further.
Edit: To answer the second question (above was ‘why’, now for ‘how do I make it happen anyway’): You can’t, sorry.