本文介绍了用于衡量iPad或手机代码内的完整执行时间的代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用 mach_absolute_time 与下面的金鹰解释的简单 NSDate 方法有什么区别?
Is is any difference between using mach_absolute_time and the simple NSDate method explained by golden eagle below?
以下是使用mach方法的一个很好的解释......
Here's an excellent explanation of using the mach approach...
和
推荐答案
loop
{
NSDate *start = [NSDate date];
// a considerable amount of difficult processing here
// a considerable amount of difficult processing here
// a considerable amount of difficult processing here
NSDate *methodFinish = [NSDate date];
NSTimeInterval executionTime = [methodFinish timeIntervalSinceDate:start];
NSLog(@"Execution Time: %f", executionTime);
}
应该有效。
这篇关于用于衡量iPad或手机代码内的完整执行时间的代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!