In didFinishLaunchingWithOptions, the first code is:
NSMutableArray *k = [[NSMutableArray alloc] initWithCapacity:10];
[k release];
(I reduced it to this case after much debugging) and I'm getting
*** -[__NSArrayM class]: message sent to deallocated instance 0x7576c90
*** -[__NSArrayM respondsToSelector:]: message sent to deallocated instance 0x7576c90
If I check the retainCount on 'k' after the alloc line, it is 1. If I replace NSMutableArray by NSArray everything is fine. What the heck is going on here??
kafter this point? – Richard J. Ross III Nov 15 '12 at 16:25NSMutableArrayis (usually) implemented with a linked-list in the backing, andNSArrayuses an actual array. Different circumstances and constructors though, can change how it's backed. – Richard J. Ross III Nov 15 '12 at 16:27kagain -- the object is deallocated andkbecomes a dangling pointer. You could use the variablekagain, but before you do that you must assignkto point to another object ornil. – newacct Nov 15 '12 at 19:42