我在资源的文件夹 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 视图中......
请帮忙
谢谢