vote up 2 vote down star

What is an easy way to time a Cocoa application? (Alternatively, any good way to measure performance would suffice).

(I have two different frameworks and would like to compare their performances over some fixed input data)

flag

69% accept rate

3 Answers

vote up -1 vote down

You can calculate the time of a cocoa app by using the NSTimer class. start the timer when the program runs and end it after all program logic has been completed.

link|flag
vote up 8 vote down

Instruments will keep a clock for you, although you may find that the frameworks' difference is within the margin of how quickly you can start the app working on the data.

You can use Shark and the CHUD framework to do a better job of this. The framework lets you programmatically start and stop profiling; you'll start at the beginning of the work and end at the end of the work, and then have a nice Shark document to show for it. The Shark manual has more details.

link|flag
vote up 0 vote down
NSDate *startDate = [NSDate date];
// ...
NSDate *stopDate = [NSDate date];

NSLog(@"-- time: %f", [stopDate timeIntervalSinceDate:startDate]);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.