How to display images in the uiwebview

大憨熊 提交于 2020-01-26 04:01:07

问题


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>"];
 appendString =[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.


回答1:


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.



来源:https://stackoverflow.com/questions/4601711/how-to-display-images-in-the-uiwebview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!