0

参照フォルダーから UIWebView に画像を読み込もうとすると、小さな青い疑問符が表示されます。コードは次のとおりです。

NSString *imagePath=[NSString stringWithFormat:@"dataResources/IMG_0878.jpg"];

[webView loadHTMLString:[NSString stringWithFormat:@"<img src=\"file://%@\"/>",imagePath] baseURL:nil];

また、同じものを使用して UIImageView に画像をロードすると、完全に機能します

画像を設定するためのコードは次のとおりです。

UIImage *tile = [UIImage imageNamed:(@"dataResources/IMG_0878.jpg")];

[imgv setImage:tile]; 

この問題を解決する方法を教えてください

4

2 に答える 2

0
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"IMG_0878" ofType:@"jpg"];    

NSURL *bundleUrl = [[NSBundle mainBundle] bundleURL];

[webView loadHTMLString:[NSString stringWithFormat:@"<img src=\"file://%@\"/>",imagePath] baseURL:bundleUrl];

bundleUrl を設定していません

于 2013-05-14T09:07:50.263 に答える