我的数据来自服务器,我将其存储在字典中。字典中有一个名为 description 的键,其中包含描述的 HTML 代码。我不想将 HTML 代码保存在文件中,因为字典包含更多字典,每个字典中都有类似的描述键。我想直接从代码中加载 UIWebView 上的 HTML 文件。请帮忙。
提前致谢。
例如:
NSString *htmlString = [result objectforKey:@"HtmlValue"];
[webview loadHTMLString:htmlString baseURL:Nil];
[webview loadHTMLString:stringName baseURL:Nil];
也访问这里它将对您更有帮助
在您的项目资源中添加 file.html。使用此代码在 Web 视图中加载:
NSString *path = [[NSBundle mainBundle]pathForResource:@"file" ofType:@"html"];
NSString *htmlString = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
[_helpWebView loadHTMLString:htmlString baseURL:nil];