I'm sure I'm doing it right, but just want to check. I have two instance variables that have accessors created via @property. In my dealloc (for the same object), I free these objects.
@property(copy) NSString *firName; @property(copy) NSString *surName; -(void)dealloc { NSLog(@"_deal: %@", self); [firName release]; [surName release]; [super dealloc]; }
Gary
objective-c cocoa
fuzzygoat
source share