Skip to content

Instantly share code, notes, and snippets.

@priore
Created March 24, 2016 15:32
Show Gist options
  • Select an option

  • Save priore/7751caf8f300a9988775 to your computer and use it in GitHub Desktop.

Select an option

Save priore/7751caf8f300a9988775 to your computer and use it in GitHub Desktop.
Performance examination procedure
// performance examination procedure
#ifdef DEBUG
double then, now;
now = CFAbsoluteTimeGetCurrent();
#endif
//
// TODO: your code here
//
#ifdef DEBUG
then = CFAbsoluteTimeGetCurrent();
NSLog(@"**** time %f sec", then-now);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment