如何比较objc中的时间

时间:2012-07-18 07:43:55

标签: objective-c nsdate

我想要一个倒计时,显示日,小时,M和S.第二个被叫一次。

- (void)changetime {     

    NSCalendar *cal = [NSCalendar currentCalendar];//定义一个NSCalendar对象                 
    NSDate *today = [NSDate date];//得到当前时间

    unsigned int unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
    NSDateComponents *weekdayComponents =[cal components:(unitFlags) fromDate:self.overDate]; 
    NSDate *todate = [cal dateFromComponents:weekdayComponents]; 
    NSDateComponents *d = [cal components:unitFlags fromDate:today toDate:todate options:0];

    NSInteger days=[d year]*365+[d month]*31+[d day];
    if ([self.overDate earlierDate:[NSDate date]]==self.overDate) {
        [myTimer invalidate];
        myTimer=nil;
        self.labdate.text = [NSString stringWithFormat:@"%d天%d时%d分%d秒",days, [d hour], [d minute], [d second]];
        return;
    }    
    self.labdate.text = [NSString stringWithFormat:@"%d天%d时%d分%d秒",days, [d hour], [d minute], [d second]];     
}

myTimer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(changetime) userInfo:nil repeats:YES];

self.overDate=[wedding date];//this is a future time

1 个答案:

答案 0 :(得分:2)

以下行应该引起警报:

NSInteger days=[d year]*365+[d month]*31+[d day];

一年中只有365天〜格里高利历中有75%的时间。在该日历中,将近50%的月份没有31天。查看Apple文档中的Date Calculations部分,该部分告诉您,如果您在components:fromDate:toDate:options:电话中询问日期组件并且没有更大的内容,您将获得将日历考虑在内的天数。