时间戳
2018-11-29 本文已影响1人
乐乐的熊
时间戳转换成距此刻多久
//model.create_time = 172636123;//时间戳
NSDate *postDate = [NSDate dateWithTimeIntervalSince1970:model.create_time];
self.class_timeLabel.text = postDate.timeAgoSinceNow;
//timeAgoSinceNow为DateTools第三方的方法;