接口返回的数据:
<time>1377000845058</time>
解析:
//时间戳转时间,时间的格式设置
NSDateFormatter* formatter = [[[NSDateFormatteralloc] init]autorelease];
[formatter setDateStyle:NSDateFormatterMediumStyle];
[formatter setTimeStyle:NSDateFormatterShortStyle];
[formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
//时间戳转时间的方法
NSDate *confromTimesp = [NSDatedateWithTimeIntervalSince1970:[bean.timedoubleValue]/1000];
NSLog(@"changTime = %@",confromTimesp);
//将NSDate类型转化为string类型,方便label赋值
NSString *timeString=[formatter stringFromDate:confromTimesp];
time_label.text=timeString;//这样time_label显示将会按照YYYY-MM-dd HH:mm:ss这种样式显示时间
原文链接:https://www.f2er.com/xml/299733.html