please hepl if some body had same problem... I have sqlite db, with images in NSData. I need to insert image in uiwebview but... the image do not show....
NSString *html = [NSString stringWithFormat:
@"<html> <head>"
@"<style> body { font-family:Verdana;font-size:13px;}</style>"
@"</head>"
@"<img src=\"%@\" />"
@"<br/>%@"
@"</body> </html>", datePicture,strDescription]] ;
And then i insert it in UIWebview:
[descripWebView loadHTMLString:html baseURL:nil];