我有一个日期,例如' 2014-11-16T15:42:14'在服务器中,现在我想将这个日期转换为像#1; 1天和2小时前那样的格式化'。 任何人都可以帮我解决这个问题吗?
我全心全意地接受你的选票。(请解释我投票的原因,这样我就不会重复我的错误)。
答案 0 :(得分:1)
看看那个肯定会帮助你的例子。
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDate *date = [NSDate date];
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setWeekOfYear:1];
[components setHour:12];
NSLog(@"1 week and twelve hours from now: %@", [calendar dateByAddingComponents:components toDate:date options:0]);