I\'m hoping this isn\'t something to do with the fact that I\'m using a Mutable array here, but this one is baffling me so it wouldn\'t surprise me if that were the case.
<
Sounds like a memory management issue to me. EXC_BAD_ACCESS
usually means that you're trying to access an object that has been deallocated. unarchiveObjectWithFile:
returns an autoreleased object, so you have to retain it if you want to keep it around, either with an explicit retain
or by assigning it to a retained property.