Skip to content

Instantly share code, notes, and snippets.

@Sunnyztj
Created June 16, 2017 04:49
Show Gist options
  • Save Sunnyztj/995cc5588f6425257f78d89e2edd595e to your computer and use it in GitHub Desktop.
Save Sunnyztj/995cc5588f6425257f78d89e2edd595e to your computer and use it in GitHub Desktop.
计算 函数运行需要的时间
CFAbsoluteTime startTime =CFAbsoluteTimeGetCurrent();
.... Code ......
CFAbsoluteTime linkTime = (CFAbsoluteTimeGetCurrent() - startTime);
NSLog(@"Linked in %f ms", linkTime *1000.0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment