を作成し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のコーディング全体を表示します