开发者

How to display images in the uiwebview

I am implementing a UIWebView. In that I just need to display an iamges. But I am not able to do it. Please check out my code, and please let me know does I make any mistake.

NSString *absStirng=[[[NSBundle mainBundle] resourceURL] absoluteString];
 appendString =[appendString stringByAppendingString:@"<html>"];
 appendString =[appendString stringByAppendingString:@"<body>"];
 app开发者_运维百科endString =[appendString stringByAppendingString:@"<a href='/#/'><img src="];
 appendString =[appendString stringByAppendingString:absStirng];
 appendString =[appendString stringByAppendingString:@"image.png /></a>"];
 appendString =[appendString stringByAppendingString:@"</body>"];
 appendString =[appendString stringByAppendingString:@"</html>"];
 [myWebView loadHTMLString:appendString baseURL:[NSURL URLWithString:@"http://serverUrl/"]; 

Please help me out of this, I am trying it from two days.. Thank you, Madan Mohan.


You are loading from "returnString", instead of "appendString". If absStirng is your image url, no need to put image.png in addition. And I think you should put the image url in quotes when creating the html.

You would also benefit by using a mutable string.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜