If I make an NSString using the code below, do I need to need to release someString?
NSString *someString = @\"somestring\";
If it's a compile-time constant string, there wouldn't be a need to retain it as well. Is it correct?