I am pretty sure I am doing this right, but just wanted to check. I have two instance variables that have accessors created via @property. In my dealloc (for the same object) I am releasing these objects.
@property(copy) NSString *firName;
@property(copy) NSString *surName;
-(void)dealloc {
NSLog(@"_deal: %@", self);
[firName release];
[surName release];
[super dealloc];
}
gary