If you want to do this programmatically, this is the only way I could find to execute it: (specify your sizes, 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