标签: objective-c performance timer
我想比较不同脚本的实际效率。 我目前使用计时器:
NSDate *start = [NSDate date]; // Do something NSLog(@"Elapsed : %f",[start timeIntervalSinceNow]);
但它不相关,因为它可能取决于在后台工作的操作系统等... 是否存在真正衡量执行脚本所需的处理器周期的东西? 或等同的东西?
由于
答案 0 :(得分:0)
鲨鱼可能会帮助你。 iPhone指南:http://rudifa.wordpress.com/2009/09/16/profiling-an-iphone-application-with-shark/
更多信息:Why is "Run > Run with Performance Tool > Shark" always gray in Xcode? How to call that?