Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序。在那个应用程序中,我从NSXMLParser. 我需要将该 html 数据发送到UIWebView. 所以请告诉我如何将该 html 数据作为输入UIWebview或如何使用该数据创建新的 html 文件以及如何运行该 html 文件?
NSXMLParser
UIWebView
UIWebview
来自UIWebView 文档
这是加载 html 所需的方法:
- (void)loadHTMLString:(NSString *)string baseURL:(NSURL *)baseURL
试试这个:
[mWebView loadHTMLString:htmlString baseURL:nil];