我创建了UIWebView
一个 HTML 文件并使用它来显示一些内容。但是当我运行它而不是显示内容时,只有整个 HTML 文件编码出现在 WebView 中。请帮助并告诉我出了什么问题。
UIWebView *ingradients= [[UIWebView alloc]init];
[ingradients setFrame:CGRectMake(10, 170, 300, 300)];
[ingradients loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"htmlfile" ofType:@"html"]isDirectory:NO]]];
ingradients.delegate=self;
[self.view addSubview:ingradients];
我的htmlfile.html包含
<html>
<body>
<p><strong>Ingredients</strong></p>
</body>
</html>
而不是以粗体显示“成分”,而是显示htmlfile.html的整个编码