NSInteger dateTime = [model.updatedAt integerValue];
dateTime = dateTime / 1000;
NSDate *date = [NSDate dateWithTimeIntervalSince1970:dateTime];
NSLog(@"33333%@",date);
NSDate *currentDate = [NSDate date];
NSTimeInterval time = [currentDate timeIntervalSinceDate:date];
NSLog(@"%f",time);
if ((time / (24 *3600)) > 1 ) {
if((time / (24 * 3600)) < 15){
NSString *str = [NSString stringWithFormat:@"更新 %d 天前",(int)time / (24 * 3600)];
self.labelUpdateAt.text = str;
}else {
// 按某个格式将日期输出.
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"YYYY/MM/dd"];
NSString *dateString = [dateFormatter stringFromDate:date];
NSLog(@"dateString:%@",dateString);
self.labelUpdateAt.text = dateString;
}
}else if ((time / 3600) > 1) {
NSString *str = [NSString stringWithFormat:@"更新 %d 小时前",(int)(time / 3600)];
self.labelUpdateAt.text = str;
}else if ((time / 60) > 1) {
NSString *str = [NSString stringWithFormat:@"更新 %d 分钟前",(int)(time / 3600)];
self.labelUpdateAt.text = str;
}else {
NSString *str = @"刚刚";
self.labelUpdateAt.text = str;
}
时间戳转换为日期的详细代码.
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- new Date() 构造函数里要传的是毫秒数,如果未传参数,将自动获得当前日期和时间。而我们之所以可以传日期进去...
- 最近因为项目需要,使用到了Excel表数据上传,遇到了一个让我非常头疼的问题,那就是excel表中的数据格式是日期...