NSTimeInterval的使用

Posted Flying_in_the_world

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NSTimeInterval的使用相关的知识,希望对你有一定的参考价值。

第一种方式: 
NSTimeInterval time = ...; 
NSString *string = [NSString stringWithFormat:@"%02li:%02li:%02li", 
                                              lround(floor(time / 3600.)) % 100, 
                                              lround(floor(time / 60.)) % 60, 
                                              lround(floor(time.)) % 60]; 

第二种方式: 
// You could also have stored the start time using 
    // CFAbsoluteTimeGetCurrent() 
    NSTimeInterval elapsedTime = [startDate timeIntervalSinceNow]; 

    // Divide the interval by 3600 and keep the quotient and remainder 
    div_t h = div(elapsedTime, 3600); 
    int hours = h.quot; 
    // Divide the remainder by 60; the quotient is minutes, the remainder 
    // is seconds. 
    div_t m = div(h.rem, 60); 
    int minutes = m.quot; 
    int seconds = m.rem; 

    // If you want to get the individual digits of the units, use div again 
    // with a divisor of 10. 

    NSLog(@"%d:%d:%d", hours, minutes, seconds) 

如果您有您初始日期存储在 NSDate 对象时,您可以获得新日期任何时间间隔在未来。只需使用 dateByAddingTimeInterval: 像这样: 

NSDate * originalDate = [NSDate date]; 
NSTimeInterval interval = 1; 
NSDate * futureDate = [originalDate dateByAddingTimeInterval:interval]; 

ios获取自1970年以来的毫秒数同java的System.currentTimeMillis() 

Java代码  
  1. + (NSString*)generateTimeIntervalWithTimeZone  
  2.   
  3.     NSMutableString *result = [[NSMutableString alloc] init];  
  4.     NSDate *date = [NSDate date];  
  5.     NSTimeInterval time = [date timeIntervalSince1970]*1000;//毫秒数要乘以1000  
  6.     double i=time;      //NSTimeInterval返回的是double类型  
  7.       
  8.       
  9.     NSDateFormatter *format = [[NSDateFormatter alloc] init];  
  10.     [format setDateFormat:@"Z"];  
  11.     NSString *timeZone = [format stringFromDate:date];  
  12.     NSString *timeIntervalStr = [NSString stringWithFormat:@"%.f", i];  
  13.       
  14.     [result appendString:timeIntervalStr];  
  15.     [result appendString:timeZone];  
  16.       
  17.     return result;  
  18.  

以上是关于NSTimeInterval的使用的主要内容,如果未能解决你的问题,请参考以下文章

NSTimeInterval 格式

NSTimeInterval的使用

NSTimeInterval的使用

如何使用 NSTimeInterval 进行 CMTime 引用

SpriteKit NSTimeInterval 重命名

NSTimeInterval 到小时和分钟的错误转换