iOS 中如何获取当前日期的开始和结束时间?

我想获取 iOS 中当前日期的开始和结束时间

例如:12-03-2017 00:00:00 以及 12-03-2017 23:59:59

应该如何获得呢?


可以使用 startOfDayForDate 获取今天的午夜时间,然后从该日期获取结束时间。

//开始时间
let calendar = NSCalendar.currentCalendar()
calendar.timeZone = NSTimeZone(abbreviation: "UTC")! //OR NSTimeZone.localTimeZone()
let dateAtMidnight = calendar.startOfDayForDate(NSDate())

//结束时间
let components = NSDateComponents()
components.day = 1
components.second = -1
let dateAtEnd = calendar.dateByAddingComponents(components, toDate: startOfDay, options: NSCalendarOptions())
print(dateAtMidnight)
print(dateAtEnd)

:将日期转换为时间

let dateFormatter = NSDateFormatter()
dateFormatter.timeZone = NSTimeZone (abbreviation: "UTC")! // 或者 NSTimeZone.localTimeZone()
dateFormatter.dateFormat = "dd-MM-yyyy HH:mm:ss"
let startDateStr = dateFormatter.stringFromDate(dateAtMidnight)
let endDateStr = dateFormatter.stringFromDate(dateAtEnd)
print(startDateStr)
print(endDateStr)

你可能感兴趣的:(iOS 中如何获取当前日期的开始和结束时间?)