美文网首页
iOS 时间戳 与 时间相互转化

iOS 时间戳 与 时间相互转化

作者: QinChBeSt | 来源:发表于2016-02-27 21:02 被阅读972次

    我们经常从服务器后台拿到时间戳的时间,以下代码可以实现将时间戳转为可读的时间格式。

    今天在做一个接口的时候,被要求传一个时间戳过去,然后就是开始在Google上,遇到两个问题,第一是当前时间转化为时间戳,第二是获取的当前时间和系统的时间相差8个小时。

    一,转化的方法为

    NSString *timeSp = [NSString stringWithFormat:@"%d", (long)[localeDate timeIntervalSince1970]];

    NSLog(@"timeSp:%@",timeSp); //时间戳的值


    二,把获取的时间转化为当前时间

    NSDate *datenow = [NSDate date];//现在时间,你可以输出来看下是什么格式

    NSTimeZone *zone = [NSTimeZone systemTimeZone];

    NSInteger interval = [zone secondsFromGMTForDate:datenow];

    NSDate *localeDate = [datenow  dateByAddingTimeInterval: interval];

    NSLog(@"%@", localeDate);


    3.把时间戳转化为时间的方法

    NSDate *confromTimesp = [NSDate dateWithTimeIntervalSince1970:1363948516];

    NSLog(@"1363948516  = %@",confromTimesp);

    相关文章

      网友评论

          本文标题:iOS 时间戳 与 时间相互转化

          本文链接:https://www.haomeiwen.com/subject/vawwkttx.html