loadHTMLString不从网站加载图像

时间:2016-10-09 21:20:52

标签: ios swift2 wkwebview

我正在将网站的部分HTML内容加载到WKWebView。我正在尝试加载的部分有时包含图像。使用

webView.loadHTMLString(url, baseURL: nil)

给我以下图片:

The image is a screen shot of the WKWebView running a piece of the HTML (the HTML is coming from a website) on the simulator

而不是显示图像,而是存在问号。 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

问题是baseURL: nil。您需要提供实际的基本URL!否则,如何解析图像URL?