1

我在资源的文件夹 ABC 中有一张图片说 point.png。

我想在 html 中显示该图像

NSString *myFilePath=   [[NSBundle mainBundle] pathForResource:@"Point1" ofType:@"png"];
NSMutableString *strForWebView = [NSString stringWithFormat:@"<html>"
                                          "<head><b>%@</b></head><br>"
                                          "<img src= %@ height='30' width='30' />"
                                          , [[play quotations] objectForKey:@"Heading"], myFilePath, .......

所以现在我应该怎么做才能选择图像的路径......在 html 中,它从它被加载到 web 视图中......

请帮忙

谢谢

4

1 回答 1

0

使用您的方法对于提供正确的 baseUrl 来加载 webView 至关重要。

如果您需要非本地基本 url 来加载一些外部数据,请考虑通过 base64 演示显示图像,我在这个答案中详细说明了如何做到这一点。

在此线程的 OP 中,如果您只想显示本地内容,您还将看到必须如何使用基本 url。

于 2012-07-12T12:37:26.050 回答