up vote 16 down vote favorite
4
share [g+] share [fb]

Title says it all I guess.

Is there anything wrong with doing something like

NSString * string = [ [ NSString alloc ] init ];
...
[ string release ];

or is there any value (other than best practice) in also adding

string = nil;

?

link|improve this question

Setting to nil makes NSZombieEnabled useless I guess, so might be counterproductive. It would be better if someone more knowledgeable than me explained this. – ustun Oct 14 '09 at 17:56
feedback

3 Answers

up vote 21 down vote accepted

Not necessary, but good practice. If you were to inadvertently reference it after release, bad things could happen, but in Objective C there isn't any harm in referencing a nil.

link|improve this answer
Cool. I figured as much, but I wanted to make sure there wasn't something crucial I was missing. Thanks. – LucasTizma Apr 29 '09 at 19:29
feedback

Setting an instance variable to nil is more useful in a multi-threaded application than a single-threaded one, since with multiple threads you can't always guarantee that an instance variable will only be read before it's released.

I generally don't bother in single-threaded applications, unless there's some other compelling reason.

link|improve this answer
feedback

Objective-C is really the same as C with a fancy preprocessor.

Setting a pointer to nil in Objective-C has no effect on what was once pointed to by that pointer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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