I'm a bit confused as to whether NSStrings
should ever be retained and synthesized. I have a NSString
value as an instance variable, and am retaining and synthesizing it. But I am assigning it different values such as:
self.value = @"VALUE";
....
self.value = @"DIFFERENT_VALUE";
I'm not actually calling alloc
anytime. Do I need to retain and synthesize this variable then?