Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have implemented 2 methods using Assetslibrary (which worked perfectly well) for loading images from the photoalbum and another approach which would load thumbnails of images from the documents directory into a table view. For the second approach, I have used GCD to load the images but it is slow, choppy and eventually crashes. I have researched online and found lots of resources for images downloaded from the web but this is for images in the documents directory.

I would like to ask from more experienced developers what is the BEST approach to load movies and pictures from the documents directory, create thumbnails and populate my tableview without it becoming choppy, slow and crashing? Note: I have used GCD (dispatch_async) to make the call to create the imageWithContentsOfFile, used another block to call a method that generates the thumbnails. I will appreciate advice (APIs, approach, etc) on how to deal with this problem and eradicate the laggy, slow behaviour.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.