If I have a parameter passed to a method, do I need to release the parameter at the end of the method?
|
feedback
|
|
No. Think NARC: "New Alloc Retain Copy". If you are not doing any of those things, you don't need to release. | |||||||||||||||
feedback
|
|
Please read the Cocoa memory management guidelines. The following rule is relevant to your question:
Clearly you did not obtain the parameters by creating them (in your method). So the only part that you need to worry about is whether you retained them in the method. If you did, you must release or autorelease them. If you did not, you must not release or autorelease them. | |||
|
feedback
|
|
You need to release them only, if you | |||
|
feedback
|