Linux world
Linux world

Reputation: 3768

how to increase size of text in web view

i have a web view and i want to increase size of text in it when i press button ...

Upvotes: 1

Views: 411

Answers (1)

Douwe Maan
Douwe Maan

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

Related Questions