一文搞懂 iOS 时间戳和日期转化

概念或者基础

1.时间戳是指1970年1月1日0时0分0秒到当前时间的秒数。注意这里的当前时间是指UTC+0时间,iOS时间戳是10位,服务器时间戳13位。
2.GMT和UTC, UTC协调世界时,全世界通用的时间标准,GMT可以粗暴认为就是UTC, 北京时间 = UTC+8 = GMT+8
3.UTC+8 指的是北京时间,在UTC+0的时间的基础上偏移了8个小时,西8区是UTC-8
4.[NSDate date] 得到的是UTC+0时间
5.NSDateFormatter 默认不设置时区,拿到的是当前手机时区的时间,如果定死了timeZone的时区,那就不管在哪个地方时间都不会变,通过修改timeZone可以拿到所有地区时间
6.时间传递统一时间戳,服务器客户端拿到的都是UTC+0的时间,通过这个时间戳转化为UTC+0的NSDate对象,通过NSDateFormatter拿到指定时区的时间字符串。

获取时区时间字符串

  NSDate *date = [NSDate date];
  NSDateFormatter *formatter = [[NSDateFormatter alloc] init];//最结尾的Z表示的是时区,零时区表示+0000,东八区表示+0800
  [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];//使用formatter转换后的date字符串变成了当前时区的时间
  formatter.timeZone = [NSTimeZone systemTimeZone]; //拿到的是当前时区的时间,这行代码可以不要,默认的timeZone就是当前时区,通过timeZone可以拿到任意时区的时间字符串
  NSString *dateStr = [formatter stringFromDate:date];

时间字符串转化为NSDate

 NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
 NSString *dateStr = @"2016-12-07 14:06:24";//默认是当地时区时间,如果指定了某个时区,拿到的就是指定时区的时间  
 [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
 NSDate *newDate = [formatter dateFromString:dateStr];

时间戳和日期相互转化

  NSDate *date = [NSDate date];
  NSTimeInterval interval = [date timeIntervalSince1970];//日期转化为时间戳
  NSDate *date2 = [NSDate dateWithTimeIntervalSince1970:interval]; //时间戳转化为日期

NSDate 转化为UTC字符串

   // 方法1 是用一个NSDate对象,用两个formatter, 方法二用两个NSDate对象一个formatter
    NSDate *date = [NSDate date];//获取当前时区时间
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    formatter.timeZone = [NSTimeZone defaultTimeZone];
    
    NSDateFormatter *formatter2 = [[NSDateFormatter alloc] init];
    [formatter2 setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    formatter2.timeZone = [NSTimeZone timeZoneWithName:@"UTC"];
    NSString *realDate = [formatter stringFromDate:date];
    NSString *utcString = [formatter2 stringFromDate:date];

时间戳转化为字符串日期

- (NSString *)convertToTimeStringWithTimeInterval:(NSTimeInterval)timeInterval{    
    NSDate *date = [NSDate dateWithTimeIntervalSince1970:timeInterval];     
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];    
    NSString *dateStsring = [dateFormatter stringFromDate:date];             
    return dateStsring;
}

时间字符串转化为时间戳

- (NSTimeInterval)convertToTimeIntervalWithTimeString:(NSString *)timeString{    
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];//不指定时区就是默认是当前时区    
    NSDate *date = [dateFormatter dateFromString:timeString];   
    NSTimeInterval timeInterval = [date timeIntervalSince1970];   
    return timeInterval;
}

获取年月日

  NSDate *date = [NSDate date];
  NSDateComponents *components = [[NSCalendar currentCalendar] components:    (NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date];
  NSInteger day = components.day;
  NSInteger day = components.month;
  NSInteger day = components.year;

获取当前时区当天0点时间

  NSDate *nowDate = [NSDate date];
  NSCalendar *calendar = [NSCalendar currentCalendar];
  NSDateComponents *components = [calendar components:NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay fromDate:nowDate];//从日历中获取年月日去掉时分秒获取
  NSDate *zeroHourDate = [calendar dateFromComponents:components];//从日历中拿到0点

获取当前时区的偏移量

  NSInteger seconds = [[NSTimeZone localTimeZone] secondsFromGMT];//从当前时区获取偏移的秒数
  CGFloat timeZone = seconds/3600.0f;//转化为小时即为偏移量, UTC+8的偏移量就是8,UTC+0就是0,如果是西8区即UTC-8,拿到的偏移量就是-8。

获取东8区16点时间

//思路东8区18点就是在当地时区的基础上偏移8个小时即可,考虑一种情况如果当地时区偏移加上8小时偏移小于0.这个时候获取的时间是昨天的东8区16点,这个时候加上24点,可以拿到当天的东8区16点    
NSDate *nowDate = [NSDate date];
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [calendar components:NSCalendarUnitYear |
                                                        NSCalendarUnitMonth |
                                                        NSCalendarUnitDay
                                               fromDate:nowDate];
    //获取今天0点时间
NSDate *zeorDate = [calendar dateFromComponents:components];
CGFloat offset = 8 * 3600 + [[NSTimeZone localTimeZone] secondsFromGMT];
if (offset < 0) {
    offset = offset + 24 * 3600;
}
NSDate *newDate = [zeorDate dateByAddingTimeInterval:offset];
 

获取当前时间未来某一天时间

    NSTimeInterval intervals = 24 * 3600 * dayNum;
    NSDate *date = [[NSDate alloc] initWithTimeIntervalSinceNow:intervals];

获取指定日期未来X时间

    NSDate *date; //未来日期
    NSTimeInterval intervals = 24 * 3600 * X;//X代表天数 date指定日期
    NSDate *lastDay = [NSDate dateWithTimeInterval:intervals
                                         sinceDate:date];

DateFormat 格式

 NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
 dateFormatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";//苹果官方网站例子 @"yyyy-MM-dd'T'HH:mm:ssZZZZZ"

你可能感兴趣的:(一文搞懂 iOS 时间戳和日期转化)