时间戳
程序员文章站
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第三方的方法;