I have a image say point.png in folder ABC in resourse.
I want to show that image in 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, .......
SO now what should i do so that it picks the path of image...in html from which it is loaded in web view...
pls help
Thanks