将图像从html字符串加载到UITextView或UIWebView中

时间:2016-03-02 19:24:52

标签: html ios swift uiwebview

我有一个看起来像

的html字符串
<h1>Header</h1><h2>Subheader</h2><p>Some <em>text</em></p><img src=\"http://dreamatico.com/data_images/flowers/flowers-4.jpg\" width=70 height=100 />

我想将此html的文本以及图片加载到UITextViewUIWebView。我该怎么做?

1 个答案:

答案 0 :(得分:1)

好吧,您无法将图片加载到文本视图中。但是UIWebView非常简单,假设你在故事板中引用了一个,或者有一个alloc-init,你可以简单地做到

UIWebView * webView;
[webView loadHTMLString: @"<html><b>My HTML!</b></html>" baseURL: nil];