I have a function that retrieves some images from a JSON feed using NSURLConnection. My connectionDidFinishLoading retrieves an array with all the data for that image (including the URL of the image).
What’s the best way to display that image on a UIImageView? Even though the URL is being retrieved, I am pretty sure I would still have to display the image in a connection-friendly manner?
Thank you,
As per your requirement Images must be display in connection friendly manner. Then you can go for
Image cacheingwhich requires image URLs. For your best understanding see this link and this link.for asynchronous image downloading try with this link.