how to increase or decrease the UIWebview font size, not using scalePageToFit:NO;
|
feedback
|
|
I have 2 buttons - A- and A+
| |||||||||
feedback
|
|
There is currently no exposed way to directly manipulate the DOM in a UIWebView, nor any convenience methods for handling things like font sizes. I suggest filing Radars. Having said that. you can modify the font size by changing the CSS, like any other webpage. If that is not possible (you don't control the content) you can write a small javascript function to change the CSS properties in the pages DOM, and execute it by calling:
| |||
feedback
|
|
You could also disable the buttons when they're at their respective limits. Add the following Slim's method, and you have to add IBOutlets for both buttons. (You could do it without IBOutlets if you really wanted to, but I think this is really clear.)
| |||
|
feedback
|