如何在Objective-C中获取相对日期?
如果我有“今天”,我如何找到“昨天”,“上周”,“过去两周”,“一个月前”,“两个月前”?
答案 0 :(得分:10)
因此,如果您有NSDate *today = [NSDate date];
,那么您可以使用NSDateComponents
来获取相对日期。
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDate *today = [NSDate date];
NSDateComponents *yesterdayComponents = [[NSDateComponents alloc] init];
[yesterdayComponents setDay:-1];
NSDate *yesterday = [calendar dateByAddingComponents:yesterdayComponents toDate:today options:0];
[yesterdayComponents release];
NSDateComponents *twoWeeksAgoComponents = [[NSDateComponents alloc] init];
[twoWeeksAgoComponents setWeek:-2];
NSDate *twoWeeksAgo = [calendar dateByAddingComponents:twoWeeksAgoComponents toDate:today options:0];
[twoWeeksAgoComponents release];
等
NSDateComponents
和NSCalendar
会自动处理下溢和溢出(除非您使用options:
位将其关闭)。因此,如果今天是“2月28日”并且您想要“明天”,它将根据年份自动选择“2月29日”或“3月1日”。它太酷了。这也是进行日期操作的唯一正确方法。