This is the only way I could find to accomplish this: (specify your own dimensions, if you wanted, I tried to zoom out after entering in the form field)
UIScrollView *sv = [[webViewView subviews] objectAtIndex:0];
[sv zoomToRect:CGRectMake(0, 0, sv.contentSize.width, sv.contentSize.height) animated:YES];
source
share