Aniruddha Joshi
Aniruddha Joshi

Reputation: 13

Storing NSObjects in file

I have huge array with NSobjects. While storing to file iPad is getting memory issues. I want to store each object in file one by one and again read it back. Any suggestions?

Upvotes: 0

Views: 56

Answers (2)

Damo
Damo

Reputation: 12890

Alternatively if Core Data feels a little heavy you could implement the NSCoding protocol.

Apple provide a code example here

Upvotes: 1

Related Questions