I\'m generating an UIWebView into my viewDidLoad method, with a tiny size (let\'s say something like 50x70). And then I put it into a super UIView.
I\'d like to ma
Try this:
[oneView setScalesPageToFit:YES];
... instead of:
oneView.scalesPageToFit = YES;
Hope that helps.