A philosophical question, of sorts. Is it proper to assign a constant string to an @property that's (retained)? Or, should I do self.string = [NSString stringWithString:@""];
Is there a memory leak? What if it's overreleased?
It's a constant string, so does it behave the same way as an NSString object?
If the property is (assign) does that mean it will not be valid after the run loop?