The app that I am working on right now centers on a UITableView
(with custom cells) that loads data from a Core Data database. Each entity has a few NSStrings
, a binary data attribute with a compressed resized UIImage
, and a transformable UIImage
attribute, stored externally. The app runs fabulously with just the compressed resized image saved, but when I save the full image to the transformable attribute as well, the table view becomes slow and I receive memory warnings. I should mention that the only things actually in the cells are just two NSStrings
and the jpeg representation of the compressed resized image.
Why is the full sized image that is stored externally still slowing down the table view when it is not being accessed, and what can I do to fix this?