TimeBlock 1.0× 测试测试✗ 语言语言 Obj-CObjective C许可证 MIT 版本日期最近发布2014年12月由未声明维护。安装指南×TimeBlock 安装指南你想要将以下类似的内容添加到你的 Podfile 中:target 'MyApp' do pod 'TimeBlock', '~> 1.0' end然后在终端中运行 pod install,或者从 CocoaPods.app 运行。或者为了测试它,运行以下命令:pod try TimeBlock查看 PodspecGitHub 仓库CocoaPods.org 上的页面TimeBlock 1.0由大卫·科尔多罗(David Cordero)dcordero/TimeBlockGitHub 仓库 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 });