您的位置:首页 > 编程语言 > Java开发

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

2012-02-03 13:59 375 查看


方法一 

Java代码 

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 ];  


回目录方法二

 

Java代码 

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 ];
 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java