As NSString strings are immutable, what is the value of the stringWithString: class method?
NSString
stringWithString:
I get the utility when used with NSMutabl
NSMutabl
Returns a string created by copying the characters from another given string
[NSString stringWithString:@"some string"]
It is equivalent to
[[[NSString alloc] initWithString:@"some string"] autorelease]