TimeBlock 1.0

TimeBlock 1.0

测试测试
语言语言 Obj-CObjective C
许可证 MIT
版本日期最近发布2014年12月

未声明维护。



  • 大卫·科尔多罗(David Cordero)

TimeBlock 由几个宏组成

  • traceElapsedTimeInBlock: 用于测量在执行一个 block 所花费时间的一个简单的辅助工具。
  • traceSlowExecutionBlock: 与第一个相似,但是只有在 block 花费更多的时间超过指示的秒数时才会记录。

用法

traceElapsedTimeInBlock (@"Log message", ^{
  // Write here the code you want to measure
});
traceSlowExecutionBlock (@"Log message, 25, ^{
  // Write here the code you want to log if it takes more than 25 seconds on runtime
});