欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

时间戳

程序员文章站 2022-07-03 14:55:13
...

时间戳转换成距此刻多久

//model.create_time = 172636123;//时间戳
NSDate *postDate = [NSDate dateWithTimeIntervalSince1970:model.create_time];
    self.class_timeLabel.text = postDate.timeAgoSinceNow;
//timeAgoSinceNow为DateTools第三方的方法;