NSDate :

NSDate *date = [NSDate date];获取当前日期

NSDate 可以进行比较,通过earlierDate:方法获取二个日期中最早的。

NSDate 通过laterDate:方法获取二个日期中最晚的

NSDate 通过timeIntervalSinceDate:获取2个日期的时间间隔

NSDate 通过dateWithTimeIntervalSinceNow: 通过该类方法获取距离NSTimeInterval时间间隔下得日期,返回值NSDate;

NSDateFormatter

使用NSDateFormatter来进行日期到字符串  ---- 字符串到日期的转化,能够设置 时区 通过[ format setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:8]]转化为时区是+8的

05-08 15:27