How to insert HTML into a UIWebView

后端 未结 3 1246
既然无缘
既然无缘 2021-01-30 07:19

I have HTML Content which was being displayed in a UITextView. The next iteration of my app is display the HTML contents into a UIWebView

3条回答
  •  别那么骄傲
    2021-01-30 07:50

    This should do the trick:

    NSString *myHTML = @"

    Hello, world!

    "; [myUIWebView loadHTMLString:myHTML baseURL:nil];

提交回复
热议问题