I\'m displaying a series of tiled images in a UIWebView and would like to programmatically set the UIWebview\'s initial zoom and view location.
How does one go abo
You can use this:
for (UIView *subview in webView.subviews) { if ([subview isKindOfClass:[UIScrollView class]]) { ((UIScrollView *)subview).bounces = NO; [((UIScrollView *)subview) setZoomScale:10.5f animated:YES]; } }
It may be the solution to your problem.