码迷,mamicode.com
首页 > 其他好文 > 详细

时间与时间戳的转换

时间:2014-05-24 09:55:08      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:class   blog   c   code   tar   http   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
时间戳<span>是一种时间表示方式,定义为从</span><a href="http://baike.baidu.com/view/856.htm" target="_blank">格林威治时间</a><span>1970年01月01日00时00分00秒起至现在的总秒数</span><br>//现在时间
    NSDate *nowTime = [NSDate date];
    //获取时区
    NSTimeZone *zone = [NSTimeZone systemTimeZone];
    NSInteger interVal = [zone secondsFromGMTForDate:nowTime];
    NSDate *localTime = [nowTime dateByAddingTimeInterval:interVal];//本地时间
    //时间戳转为时间
    NSString *time = @"1400386922";
    NSInteger dTime = [time integerValue];
    NSDate *publishTime = [NSDate dateWithTimeIntervalSince1970:dTime];
    NSLog(@"%@", publishTime);
     
    //计算时间间隔(localTime - publishTime)
    NSTimeInterval timeInterval = [localTime timeIntervalSinceDate:publishTime];
    NSLog(@"%f", timeInterval);
    if (timeInterval < 60) {
        
        NSString *time = @"刚刚";
         NSLog(@"刚刚!!");
    }
    if (timeInterval >= 60 && timeInterval < 3600) {
        int a = timeInterval / 60;
        NSString *time = [NSString stringWithFormat:@"%d分钟前", a];
        NSLog(@"%@", time);
    }
    if (timeInterval >= 3600 && timeInterval < 3600 * 24) {
        int a = timeInterval / 3600;
        
        NSString *time = [NSString stringWithFormat:@"%d小时前", a];
        NSLog(@"%@", time);
    }
    if (timeInterval >= 3600 * 24 && timeInterval < 3600 * 24 * 31) {
        int a = timeInterval / (3600 * 24);
        NSString *time = [NSString stringWithFormat:@"%d天前", a];
       NSLog(@"%@", time);
    }

  

时间与时间戳的转换,布布扣,bubuko.com

时间与时间戳的转换

标签:class   blog   c   code   tar   http   

原文地址:http://www.cnblogs.com/NatureZhang/p/3748467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!