how to increase or decrease the UIWebview font size, not using scalePageToFit:NO;

link|improve this question

33% accept rate
feedback

3 Answers

I have 2 buttons - A- and A+

@interface
NSUInteger textFontSize;

- (IBAction)changeTextFontSize:(id)sender
{
    switch ([sender tag]) {
        case 1: // A-
            textFontSize = (textFontSize > 50) ? textFontSize -5 : textFontSize;
            break;
        case 2: // A+
            textFontSize = (textFontSize < 160) ? textFontSize +5 : textFontSize;
            break;
    }

    NSString *jsString = [[NSString alloc] initWithFormat:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '%d%%'", 
                          textFontSize];
    [web stringByEvaluatingJavaScriptFromString:jsString];
    [jsString release];
}
link|improve this answer
1  
Be sure to set textFontSize to an initial value (presumably 100) before calling this. – zekel Jun 18 '10 at 21:24
Works like a charm, thanks! – steipete Apr 7 '11 at 1:48
It is also possible to set ...style.fontSize (or other CSS properties). In my case this meant I didn't have to convert the scale back to a proper font size between sessions. – aerique Jan 13 at 16:01
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:

- (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script;
link|improve this answer
but if i change the CSS property through javascript, it lost the position where i was reading the content after increase/decrease the font. – Praveen-K Aug 10 '11 at 7:41
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.)

MyTextSizeMin = 50;
MyTextSizeMax = 100;

// disable buttons when they're out of the range.
BOOL smallerEnabled = textFontSize > MyTextSizeMin;
BOOL biggerEnabled = textFontSize < MyTextSizeMax;
[textSmallerButton setEnabled:smallerEnabled];
[textBiggerButton setEnabled:biggerEnabled];
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.