Reputation: 11
I am trying to lazily load a dynamic thumbnail view.
I have to put images in thumbnail view one by one and until images are not available I have to display temporary image like placeholder. Any guidelines please?
Upvotes: 1
Views: 1813
Reputation: 20187
See the accepted answer in this thread. You wouldn't need the last-in first-out stack, but it shows how to load images asynchronously using grand central dispatch, which is quite straightforward. You don't need to think about complicated thread management. :)
Upvotes: 1
Reputation: 73608
You could go about like this -
UIImageView
with a default placeholder image. Hope this helps...
Upvotes: 0