Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
153 views
in Technique[技术] by (71.8m points)

cocoa touch - 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>"];
 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...