Hello
I have loaded a HTML page in a web-view.But on double click of the web-view its not zooming.I have also set the "scalesPageToFit" property to "YES" also ,but i am not able see the zoom effect in web-view.
CGRect webFrame = CGRectMake(0, 0, 320, 480);
webView = [[UIWebView alloc] initWithFrame:webFrame];
webView.backgroundColor = [UIColor clearColor];
webView.scalesPageToFit = YES;
webView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
webView.delegate = self;
webView.multipleTouchEnabled = YES;
[self.view addSubview:webView];
[self loadWebView];
Please help me out.Thanks.