I have set of data which contains images also. I want to cache this data. Should i store them on file system or on core data and why?
There are two main options:
I personally prefer the 1st option, since it allows me to choose when I want to load the actual image in memory. It also means that I don't have to remember what format the raw data is in; I can just use the path to alloc
/init
a new UIImage
object.