呆呆陈

博客园 首页 新随笔 联系 订阅 管理

 

//计算两个日期之间的天数

- (NSInteger)calcDaysFromBegin:(NSDate *)beginDate end:(NSDate *)endDate {

    NSDateFormatter *dateFormatter=[[NSDateFormatter alloc] init];

    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];

    //取两个日期对象的时间间隔:

    NSTimeInterval time= [endDate timeIntervalSinceDate:beginDate];

    int days=((int)time)/ (3600*24);

    return days;

}

 

posted on 2016-12-23 09:23  我是一只萌妹子  阅读(97)  评论(0编辑  收藏  举报