Reputation: 641
I am display text in UIWebview as there any way to enable user to zoom the text when they are reading the text.I have set font to 4 in html string.
Thanks In Advance.
Upvotes: 0
Views: 563
Reputation: 845
Set UiWebview scalesPageToFit property to YES
objWebview.scalesPageToFit = YES; // objWebview - object of UiWebview
Upvotes: 2