如何使用WKWebView加载html字符串

时间:2014-06-27 09:13:49

标签: ios8 wkwebview

如何使用WKWebView加载html字符串。

我刚刚找到loadRequest方法。我能想到的唯一方法是将html字符串保存到文件中,并按NSURLRequest加载它.......

1 个答案:

答案 0 :(得分:3)

在beta 3中,我在WKWebView中找到了这个

 /*! @abstract Sets the webpage contents and base URL.
     @param string The string to use as the contents of the webpage.
     @param baseURL A URL that is used to resolve relative URLs within the document.
     @result A new navigation.
     */
    func loadHTMLString(string: String!, baseURL: NSURL!) -> WKNavigation!

所以你可以像加载UIWebView一样加载html字符串