Persistence.... iOS

2012-02-25 Thread R
I have a large NSMutableDictionary that houses UIImages for memberID keys. I'm unArchiving the file using blocks and queues to bring to the data out off of the main thread. I would like to archive the file in pieces update the file rather than write an entire new file each time. Is there a

Re: Persistence.... iOS

2012-02-25 Thread Jens Alfke
On Feb 25, 2012, at 6:50 PM, R wrote: I would like to archive the file in pieces update the file rather than write an entire new file each time. Is there a good way to just write object for key to a file? Yes: Use a database. That’s literally exactly what you’re describing. You have