views:

7

answers:

1

hi all. 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.

+1  A: 

Set UiWebview scalesPageToFit property to YES

objWebview.scalesPageToFit = YES; // objWebview - object of UiWebview
Reena