iPhone - Auto resizing UIWebView content do not fit the frame

后端 未结 8 841
太阳男子
太阳男子 2020-12-23 17:19

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

8条回答
  •  醉酒成梦
    2020-12-23 17:45

    Try this:

    [oneView setScalesPageToFit:YES];
    

    ... instead of:

    oneView.scalesPageToFit = YES;
    

    Hope that helps.

提交回复
热议问题