how to increase or decrease the UIWebview font size, not using scalePageToFit:NO;
Try the below code :
NSString *setTextSizeRule = [NSString stringWithFormat:@"addCSSRule('body', '-webkit-text-size-adjust: %d%%;')",currentTextSize]; [_webview stringByEvaluatingJavaScriptFromString:setTextSizeRule];