Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a NSDate that represents a specific time. The format of that date is hhmmss. I want to add an NSInterval value (specified in seconds) to that time value.

Example:

NSDate =         123000
NSTimeInterval = 3600

Added together = 133000

What is the best way to do this?

share|improve this question

2 Answers

up vote 22 down vote accepted

Have you seen the Dates and Times Programming Topics for Cocoa manual?

Basically you need to convert your time into an NSDate. To convert a string to a date you use the NSDateFormatter class or maybe NSDateComponents if you already know the hours, minutes and seconds.

Your NSTimeInterval is just a double (i.e., 3600.0).

Then you use the dateByAddingTimeInterval method of NSDate to add the number of seconds to the time.

NSDate* newDate = [oldDate dateByAddingTimeInterval:3600.0];

You can then use either NSDateFormatter or NSDateComponents to get the new time back out again.

share|improve this answer
Thanks, exactly what I needed! – l Beursgens Apr 23 '09 at 12:59
addTimeInterval: Deprecated in iOS 4.0. Use dateByAddingTimeInterval: - developer.apple.com/library/ios/#documentation/Cocoa/Reference/… – SeungUn Ham Jan 5 '12 at 8:18
@SeungUnHam Indeed. The answer was written when iPhone OS 2.x was current(!), but I've updated it to reflect the current recommendation. – Stephen Darlington Jan 5 '12 at 10:08

addTimeInterval is now deprecated. Try using dateByAddingTimeInterval instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.