Can anyone confirm this for me ...
NSString *testString = @"Betty";
By my way of thinking this line is declaring the NSString pointer (*testString) to point to the string literal @"Betty". This declaration does not need an alloc, nor does it need to be released? I just want to make sure I am on the right track.
-gary-