
Hi,
I want to zoom UIWebview programmatically. Please provide me code.
Thanks

Hi,
First you set the "Scales Pages to Fit" property of your webview in interface builder. Then use the following code to set zoom level.
for (UIScrollView *scroll in [webView subviews]) {
//Set the zoom level.
[scroll setZoomScale:2.5f animated:YES];
}
Thanks

Hi,
"Scales Pages to Fit" property to TRUE
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.