Reputation: 3768
i have a web view and i want to increase size of text in it when i press button ...
Upvotes: 1
Views: 411
Reputation: 6878
Try this:
[webView stringByEvaluatingJavaScriptFromString:@"document.body.style.zoom = '1.5';"]
This will zoom in all contents of the UIWebView by a factor 1.5.
Upvotes: 1