//Init Methods
-(id)init
{
self = [super init];
date = [[NSDate dateWithTimeIntervalSinceReferenceDate:0]
retain]; <<< see below for question
return self;
}
-(void)setNewDate:(NSDate *)newDate
{
[NewDate retain];
[date release];
date = newDate;
}
@end
Question:
The line ....
date = [[NSDate dateWithTimeIntervalSinceReferenceDate:0] retain];
date must be retained, yet, retaining it, sets the retain count
to 2.
This does not make sense to me. Why should the retain count
have to be 2?
As only one object references date.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/xcode-users/rkitts%
40loudhouse.org
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/xcode-users/email@hidden