如何将NSDate转换为甲酸合成的天数?

时间:2014-11-17 12:16:13

标签: ios objective-c iphone nsdate

我有一个日期,例如' 2014-11-16T15:42:14'在服务器中,现在我想将这个日期转换为像#1; 1天和2小时前那样的格式化'。 任何人都可以帮我解决这个问题吗?

我全心全意地接受你的选票。(请解释我投票的原因,这样我就不会重复我的错误)。

1 个答案:

答案 0 :(得分:1)

看看那个肯定会帮助你的例子。

Copied From Here

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]);