This problem is driving me nuts. I would really appreciate if someone could help me out.
How do I show images in a UIWebView from a XML? The XML is located at the web. The images should be scroll-able and they are not there when the UIWebView loads up. It's a search feature from the web and the images are showing when the user has found his/her result.
I already told you, use NSXMLParser. I'm sure you can find loads of tutorials if you just Google it. And there's even a complete intro guide as well as sample code in the Documentation.
I managed to parse the XML using NSXMLParser and the image URLs are, according to the log files, being parsed correctly. How do I show those images? UIWebView or UIImageView? Thanks.
Depends on where and how you want to show them. You can download the images using NSURLConnection or ASIHTTPRequest, UIImage has a imageWithData: method to create the image from the downloaded data, then show that image in the imageview.