使用 NSDate,NSCalendar, NSDateComponents 获得时间之差总结

方法一 

NSDate* toDate1 = [ [ NSDate alloc] initWithString:@"2520-9-26 17:10:00 +0600" ];

NSTimeInterval distance = [ toDate1 timeIntervalSinceNow  ];

NSTimeInterval iDat = distance / ( 86400 ) ;

NSLog( @" From now to %@ diff: %f ", [toDate1 description ], iDat  );

[ toDate1 release ];

 

 

方法二

NSDate* toDate = [ [ NSDate alloc] initWithString:@"2009-9-29 0:0:00 +0600" ];

NSDate*  startDate = [ [ NSDate alloc] init ];

NSCalendar* chineseClendar = [ [ NSCalendar alloc ] initWithCalendarIdentifier:NSGregorianCalendar ];

 

NSUInteger unitFlags = NSHourCalendarUnit | NSMinuteCalendarUnit | 

NSSecondCalendarUnit | NSDayCalendarUnit

| NSMonthCalendarUnit | NSYearCalendarUnit;

 

NSDateComponents *cps = [ chineseClendar components:unitFlags fromDate:startDate  toDate:toDate  options:0];

 

NSInteger diffHour = [ cps hour ];

NSInteger diffMin    = [ cps minute ];

NSInteger diffSec   = [ cps second ];

NSInteger diffDay   = [ cps day ];

NSInteger diffMon  = [ cps month ];

NSInteger diffYear = [ cps year ];

NSLog(  @" From Now to %@, diff: Years: %d  Months: %d, Days; %d, Hours: %d, Mins:%d, sec:%d", 

[toDate description], diffYear, diffMon, diffDay, diffHour, diffMin,diffSec );

 

[ toDate release ];

[ startDate release ];

[ chineseClendar release ];


PS:获取年月日的方法

NSDateComponents *components = [[NSCalendar currentCalendar] components:NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit fromDate:[NSDate date]];

NSInteger day = [components day];

NSInteger month= [components month];

NSInteger year= [components year];




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值