0

I am not able to increase the font size of webview content. I had tried to increase font-size of content contained by JSON Web-Url.

Mayank Jain
  • 5,663
  • 7
  • 32
  • 65

1 Answers1

2
-(void)webViewDidFinishLoad:(UIWebView *)webView1{

int fontSize = 20; 
NSString *jsString = [[[NSString alloc] initWithFormat:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '%d%%'", fontSize] autorelease];
[webView1 stringByEvaluatingJavaScriptFromString:jsString];


}
Danial Hussain
  • 2,488
  • 18
  • 38