vote up 1 vote down star

If I make an NSString using the code below, do I need to need to release someString?

NSString *someString = @"somestring";
flag

2 Answers

vote up 2 vote down check

No, it's a compile time constant string object, so it doesn't need releasing. It's the moral equiv of char *c = "hello world" -- where the string hello world is in global data, and you're assigning the address of this data to the pointer c.

link|flag
vote up 0 vote down

No, since it's a compile-time constant string, you do not need to release it. In fact, doing so will likely cause a run-time error.

link|flag

Your Answer

Get an OpenID
or

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