I have a table view that is scrolling slowly. The data is from a server and is save to a NSArray. I've read that the slow scrolling is most likely because the images are loaded within the tableView:cellForRowAtIndexPath: code.
A solution might be to store the images in an ivar and then use them in the table. If that's the case how would I go about doing that? I haven't been able to find any sample code that does image caching and then uses it in UITable...