I have an NSDate and a duration. I need to get the time after the duration...
Given: NSDate is 2010-02-24 12:30:00 -1000 duration is 3600 secs
I need to get 2010-02-24 13:30:00 -1000
Actually I am looking for the time, but I think I know how to do that if I can get the NSDate object reflecting the new time.
I thought dateWithTimeIntervalSinceReferenceDate would do the trick but I see now that this gives date from 1 jan 2001 gmt.
Is this another c function I need to use?
Thanks for any help.
John