vote up 2 vote down star

I have an NSDate object created by

NSDate *date = [[NSDate alloc] init];

Later, I want to reset the date to the "now", so I thought that

[date init];

or

date = [date init];

might do the job, but they don't. Instead,

[date release];
date = [[NSDate alloc] init];

works. I'm a bit confused about this, since in the documentation for - (id) init, it says:

Returns an NSDate object initialized to the current date and time.

and since date is already allocated, shouldn't it just need an init message?

flag

1  
Dates are immutable and cannot be changed. If you want the time now, you need to create a new date. See Quinn's answer below specifically re: init. It's always a programming error to call init more than once on any given object. – Jason Coco Aug 6 at 19:39

1 Answer

vote up 4 vote down check

Think of alloc and init as logically inseparable halves of a constructor. You can only call methods beginning with "init" once on a given object — once the object has been initialized, and it's an error to initialize it again. This is true for any Objective-C object, not just NSDate. However, NSDate objects are also immutable — once created, they can't change.

The reason the latter code works is because you're creating a new instance of NSDate, which is the correct thing to do. You can also use [NSDate date] to accomplish the same thing. Be aware that it returns an object that you don't (yet) own, so you'll need to retain it if you need to keep it around, and release it later.

Be aware that if you receive an object from someone, it has already been initialized. (If not, it's a programming error in the code that provided it, or is an extremely uncommon exception to the rule.)

link|flag
So which is more "idiomatic" to Objective-C? To use [NSDate date] and retain, or the above [[NSDate alloc] init] and release? – Jesse Beder Aug 6 at 20:23
There's not one that's more idiomatic across the board, it just depends on what you want. However, not all classes have "convenience constructor" methods, but they will always have -init... methods. In any case, the convenience method handles the alloc/init for you and autoreleases the object. Some people are very adamant one way or the other about autorelease, but I find that reasonable use of autorelease is acceptable and often simplifies code. If you don't understand Objective-C memory management fully, that's the first thing I'd study up on. – Quinn Taylor Aug 6 at 21:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.