How to add a time interval to an NSDate?

前端 未结 5 1729
别跟我提以往
别跟我提以往 2020-12-06 03:32

I have an NSDate and a duration. I need to get the time after the duration

Given:
The date is \"2010-02-24 12:30:00 -1000\"
duration is 3600

5条回答
  •  天涯浪人
    2020-12-06 04:00

    Instead of using the deprecated addTimeInterval method, you can use the newer dateByAddingTimeInterval instance method of NSDate.

    NSDate *newDate = [oldDate dateByAddingTimeInterval:2500];
    

提交回复
热议问题