Nauman.Khattak
Nauman.Khattak

Reputation: 641

as there anyway to enable user to zoom text in UIWebView in iphone applicaiton

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

Answers (1)

Reena
Reena

Reputation: 845

Set UiWebview scalesPageToFit property to YES

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

Upvotes: 2

Related Questions