iPhone - Auto resizing UIWebView content do not fit the frame

后端 未结 8 816
太阳男子
太阳男子 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:53

    Try this.That's working for me.

    NSString *strTemplateHTML = [NSString stringWithFormat:@"%@", @"insert your html content here"];
    
    [webView loadHTMLString:strTemplateHTML baseURL:nil];
    

提交回复
热议问题