时间戳和当前时间互相转化

作者: shaneZhang 分类: ios技术 发布时间: 2014-04-19 10:56

1,转化的方法为

 

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

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

 

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

 

 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);

 

4.完成

 

 
 
 

本页面支持繁体中文友好显示:时间戳和当前时间互相转化

如果觉得我的文章对您有用,请随意打赏。如果有其他问题请联系博主QQ(909491009)或者下方留言!

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注