How to add a time interval to an NSDate?

前端 未结 5 1724
别跟我提以往
别跟我提以往 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 03:37

    For those looking for a Swift 3.x version:

    let newDate = Date.init(timeInterval: 2600, since: oldDate)
    

提交回复
热议问题