如何使用WKWebView加载html字符串。
我刚刚找到loadRequest
方法。我能想到的唯一方法是将html字符串保存到文件中,并按NSURLRequest
加载它.......
答案 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字符串