问题描述
|
我知道如何在iOS中获取日期。我需要找到上个星期的日期。例如,如果今天是2011年5月27日,我需要能够获得2011年5月20日
谢谢
解决方法
怎么样:
NSCalendar *日历= [NSCalendar currentCalendar];
NSDate *日期= [NSDate日期];
NSDateComponents * components = [[[NSDateComponents alloc] init];
[组件setWeek:-1];
NSDate * lastweek = [calendar dateByAddingComponents:components toDate:date options:0];
NSLog(@ \“%@ \”,上周);
[组件发布];
, 这很粗糙,但是可以工作:
NSDate *prevWeekDate = [currentDate dateByAddingTimeInterval:(-60 * 60 * 24 * 7)];
单击以获取有关dateByAddingTimeInterval的详细信息: