You should know that a property is just syntactic sugar.
eg:
@property(nonatomic, retain) NSString *myString;
converted to
- (NSString*)myString { return myString; } - (void)setMyString:(NSString*)newString { if (myString != newString) { [myString release]; myString = [newString retain]; } }
so if you declare @property in something way this actually frees up
Igor Apr 24 '09 at 11:33 2009-04-24 11:33
source share