I have corrupted a single object in a file. When I load in the file, one of my mutable arrays (1) contains another mutable array (2) (loaded from the same file) which is uninitialized. When I try to examine the array (2) with a for-in loop, I get: -[NSMutableArray count]: method sent to an uninitialized mutable array object"
I can get away with deleting array (2), but how do I test for it?