vote up 2 vote down star

If I have an NSMutableString such as

NSMutableString *foo = [[NSMutableString alloc] init];

if I nil out the object, foo = nil, does that lower the retain count by 1, thus effectively releasing the memory? Would I need to reallocate foo from the heap at this point to be able to use it?

flag

57% accept rate

5 Answers

vote up 4 vote down

What everybody said above is absolutely true. You need a release in that code snippet.

However, it's important to keep in mind that assigning to a property will lower the retain count if that's the right thing to do. That is:

foo = nil;         // doesn't lower
bar.foo = nil;     // probably does

Properties look like ordinary variables, but they really aren't; they handle their own memory management intelligently. That's something to keep in mind when you're working with them.

link|flag
“Properties … handle their own memory management intelligently.” Assuming you declare them correctly, of course. If you declare it with @property(assign), it won't release. – Peter Hosey Feb 26 at 3:31
This is true, but the assumption is that if you declare a property with (assign), it really shouldn't be retained (because it's a delegate, for example). In general, you should assume that another class's properties manage their values' memory correctly. – Brent Royal-Gordon Feb 28 at 18:29
vote up 5 vote down

Assigning nil to a variable does not affect the value that was previously there. Retain counts are only lowered by release.

You should read Apple's Cocoa memory management guidelines. Cocoa's reference-counting system isn't that difficult, but it is something you have to learn, and if you don't learn it correctly, your program will have lots of subtle bugs that will drive you crazy.

link|flag
vote up 8 vote down

Please read the basic documentation. Setting a variable foo to nil does nothing to its previous content. Remember, foo is just a pointer to an object; to use it, you have to make it point to a valid object. Just to make it not point to that object any more doesn't release the object.

link|flag
vote up 0 vote down

foo = nil; will not lower the retain count of the object. It will just make foo point nowhere instead of at the object. To decrement the retain count, you will have to say [foo release];.

link|flag
vote up 2 vote down
does that lower the retain count by 1, thus effectively releasing the memory?

No

You should use

[foo release]
link|flag

Your Answer

Get an OpenID
or

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