Hello,
I have a question about the best performance approach...
Basically I have a UITableView, with cells and 4 images inside the cell. (The similar Photo Application thumbnail preview); 24 images seen...
Images in cells are loaded asynchronously from URL address and when downloaded they are saved in Documents directory on iPhone.
I would like to have the same performance as the PHOTO application has when scrolling the thumbnails but I am getting slight choppy table movement...
What you recommend as best approach to use the already loaded images to present from disk and maintain the table scrolling fluent...
What you think about:
Making NSOperation that will load the thumb from disk (4 concurrent operations); 1 operation per image...
Making NSOperation that will load 4,8,16 ? images to memory in loop;
Other better approach ?
Thanks