When creating a string using the following notation:
NSString *foo = @"Bar";
Does one need to release foo? Or is foo autoreleased in this case?
|
2
|
When creating a string using the following notation:
Does one need to release foo? Or is foo autoreleased in this case?
|
|||
|
|
|
|
Compiler allocated strings (of the format @"STRING") are constant, and so -retain, -release, and -autorelease messages to them are ignored. You don't have to release or autorelease foo in this case (but it won't hurt). |
||
|
|
|
As mentioned in the docs
Since you're not using alloc, copy, etc. you don't need to worry about releasing the object. |
||
|
|