Whenever I need to create a new NSString variable I always alloc and init it. It seems that there are times when you don't want to do this. How do you know when to alloc and init an NSString and when not to?
No, that doesn't make sense. The variable exists from the moment the program encounters the point where you declare it:
This variable is not an NSString. It is storage for a pointer to an NSString. That's what the The NSString object exists only from the moment you create one:
and the pointer to that object is only in the variable from the moment you assign it there:
Thus, if you're going to get a string object from somewhere else (e.g., Sometimes you do want to create an empty string; for example, if you're going to obtain a bunch of strings one at a time (e.g., from an NSScanner) and want to concatenate some or all of them into one big string, you can create an empty mutable string (using You also need to |
|||
|
|
|
If you want to initialise it to a known value, there is little point in using
If you want to initialise it with a format or whatever, but don't need it to stick around beyond the current autorelease pool lifetime, it's a bit neater to use the class convenience methods:
If you need its lifetime to go beyond that, either Note that, since
since it leaks the initial placeholder value. |
|||||
|
|
I'm guessing that you are referring to using StringWithString or similar instead of initWithString? StringWithString alloc and inits for you under the hood and then returns an autoreleased string. If you don't need to do any string manipulation other than to have the string, you can use In general with iOS, the tighter you manage your memory the better. This means that if you don't need to return a string from a method, you should alloc init and then release it. If you need to return a string, of course you'll need to return an autoreleased string. I don't think its any more complicated than that. |
|||
|
I can't think of any time when I would want to alloc/init a NSString. Since NSStringgs are immutable, you pretty much always create new strings by one of:
|
|||||
|

NSStringvia[[NSString alloc] init];is one of the most pointless things you could do in Cocoa. The resulting string is immutable and empty. – Dave DeLong Sep 27 '10 at 15:58