vote up 0 vote down star

I'm trying to get nsdate from uidatepicker, but it constantly returns me a date time with trailing 20 seconds. How can I manually set NSDate's second to zero?

flag

1 Answer

vote up 0 vote down check

NSDate is immutable, so you cannot modify its time. But you can create a new date object that snaps to the nearest minute:

NSTimeInterval time = round([date timeIntervalSinceReferenceDate] / 60.0) * 60.0;
NSDate minute = [NSDate dateWithTimeIntervalSinceReferenceDate:time];
link|flag

Your Answer

Get an OpenID
or

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