| |||
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
| Lets say I have a simple method... method.h ... @interface Method : NSObject { NSDate *date; } -(id)init; -(void)setNewDate:(NSDate *)date; @end method.m ... @implementation Method //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/email@hidden This email sent to email@hidden
| Home | Archives | FAQ | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.