I was wondering which is the best way (the one suggested by Apple guidelines or by common sense) to store big files for an iOS application..
With big I mean for example the save of a game (which can be, let's say 500kb) so that thinking about plists is unfeasible.
Should I just save it using normal Cocoa file management API? What about standard stdio
(fopen
, fwrite
, whatever)?