UIWebView * view = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,320,480)];
NSMutableString * html = [[NSMutableString alloc] init];
NSString * imgpath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"png"];
[html appendFormat:@"<html><body><img src=%@/></body></html>", @"test.png"];
NSURL * url = [[NSURL alloc] initFileURLWithPath:imgpath];
[view loadHTMLString:html baseURL:url];
да, вы можете использовать изображения из вашего пакета.