美文网首页
时间戳转化成标准日期

时间戳转化成标准日期

作者: 心底碎片 | 来源:发表于2016-08-24 14:40 被阅读29次
    //时间戳转标准日期
        NSString *str=model.updateTime;//时间戳
        NSTimeInterval time=[str doubleValue];//因为时差问题要加8小时 == 28800 sec
        NSDate *detaildate=[NSDate dateWithTimeIntervalSince1970:time];
        NSLog(@"date:%@",[detaildate description]);
        //实例化一个NSDateFormatter对象
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        //设定时间格式,这里可以设置成自己需要的格式
        [dateFormatter setDateFormat:@"yyyy-MM-dd"];
        NSLog(@"%@",dateFormatter);
        NSString *currentDateStr = [dateFormatter stringFromDate: detaildate];
        cell.textLabel.text = currentDateStr;
    

    相关文章

      网友评论

          本文标题:时间戳转化成标准日期

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