object-C 获取当前时间
// 获得当前的时间
NSDate * startDate = [NSDate date];
// 获取结束时间
NSDate * endDate = [NSDate date];
NSLog(@"%f",[endDate timeIntervalSinceDate:startDate]);
C语言获取当前时间的代码
// 获得当前时间 - 绝对时间
CFTimeInterval start = CFAbsoluteTimeGetCurrent();
// 获得当前时间 - 绝对时间
CFTimeInterval end = CFAbsoluteTimeGetCurrent();
NSLog(@"end - start = %f",end - start);