A philosophical question, of sorts. Is it proper to assign a constant string to an @property that's (retained)? Or, should I do self.string = [NSString stringWithString:@""];

Is there a memory leak? What if it's overreleased?

It's a constant string, so does it behave the same way as an NSString object?

If the property is (assign) does that mean it will not be valid after the run loop?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Yes, it's fine. No matter which way you do it, the constant string will still be compiled into your program (because you have to use it in [NSString stringWithString:@""] anyway). Constant strings don't actually get retained/released, but the what matters is the semantics of it: you're assigning a string (which has a net +0 retainCount as far as you're concerned — you haven't alloced it, so you don't own it) to a property which will take ownership of it. If the property is (assign), then it may still work with a constant string, but it will be semantically invalid after the autorelease pool drains.

link|improve this answer
1  
Agree. And there never is a good reason for [NSString stringWithString:@"..."] of any kind. That's just a waste of cycles to achieve nothing. – Rob Napier Aug 25 '11 at 19:02
1  
@Rob Napier: the only reason to use it is when you have a mutable string. It's like a +0 alternative to -copy. – jtbandes Aug 25 '11 at 19:03
I think Rob meant there's never a reason to pass a literal to stringWithString:. – Jacques Cousteau Aug 25 '11 at 19:37
Ah, yes. That's true. – jtbandes Aug 25 '11 at 19:43
Right; I'm not debating +stringWithString:. Just passing an @"..." constant string to [NSString stringWithString:]. – Rob Napier Aug 25 '11 at 19:51
feedback

Your Answer

 
or
required, but never shown

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