Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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??

share|improve this question
What are you doing with k after this point? – Richard J. Ross III Nov 15 '12 at 16:25
@chrislhardin what? That's most definitely not the case. NSMutableArray is (usually) implemented with a linked-list in the backing, and NSArray uses an actual array. Different circumstances and constructors though, can change how it's backed. – Richard J. Ross III Nov 15 '12 at 16:27
2  
What's happening is something outside of those two lines. I copied them into an old (pre-ARC) test project and got no errors. – Phillip Mills Nov 15 '12 at 16:30
have you done a clean on the project? cmd-shift-k – P-double Nov 15 '12 at 16:44
1  
@JorisWeimar: It does matter. After you release it, you cannot use the NSMutableArray object pointed to by k again -- the object is deallocated and k becomes a dangling pointer. You could use the variable k again, but before you do that you must assign k to point to another object or nil. – newacct Nov 15 '12 at 19:42
show 6 more comments

1 Answer

up vote 1 down vote accepted

That error must be coming from somewhere else. Which means you're using it. Else, you wouldn't have

*** -[__NSArrayM respondsToSelector:]: message sent to deallocated instance 0x7576c90

But something like :

*** -[__NSArrayM release]: message sent to deallocated instance 0x7576c90

Plus, you should not use retainCount (see why here).

Just check that you're not using it anywhere else. Or maybe you're using ARC ? In which case you don't need to release it.

share|improve this answer
yeah, i checked the ARC. that's what i first thought. also, it's giving me that error exactly on the release line when i step through it with the debugger. i was just using retainCount to see what the count is. it should be 1 at that point, and it is. – Joris Weimar Nov 15 '12 at 19:29
1  
If he were using ARC, release would be forbidden. So that cannot be the case. – newacct Nov 15 '12 at 19:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.