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

时间戳

时间:2015-07-01 20:36:47      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

时间字符串从网上请求下来的字符串NSString * expireDatetime = [dictionary objectForKey:@"expireDatetime"];

因为剩余时间有可能为零

 //剩余时间可能出现null的格式 运行的时候会出错 所以要把这样的信息过滤
    if([expireDatetime isKindOfClass:[NSNull class]])
    {
        self.timeLabel.text = @"剩余:00:00:00";
    }
    else
    {
        //定义时间戳样式
        NSDateFormatter * formatter = [[NSDateFormatter alloc]init];
        formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss.0";
        //结束时间
        NSDate * endDate = [formatter dateFromString:expireDatetime];
        //获取剩余时间
        NSTimeInterval interval = [endDate timeIntervalSinceNow];
        //获取时分秒
        int HH = (int)interval / 3600;
        int MM = (int)interval / 60 % 60;
        int SS = (int)interval % 60;
        
        if(HH < 0 || MM < 0 || SS < 0)
        {
            self.timeLabel.text = @"剩余:00:00:00";
        }
        else
        {
            self.timeLabel.text = [NSString stringWithFormat:@"剩余:%.2d:%.2d:%.2d",HH,MM,SS];
        }
    }
    

 

时间戳

标签:

原文地址:http://www.cnblogs.com/huoxingdeguoguo/p/4614405.html

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