Is there any way to determine how long a method needs for execution? In seconds would be not accurately enough - in milliseconds would be better.

link|improve this question

67% accept rate
Are you by any chance asking because you want to find out what you can optimize to make it faster? – Mike Dunlavey Jan 25 '10 at 2:00
Yes, I'm using an UIWebView that is loading some pages. I want to optimize the pageloading by checking the time the method needs to load page 1 to page 10. – dan Jan 25 '10 at 2:03
1  
This appears to be a duplicate of this question: stackoverflow.com/questions/889380/… – Brad Larson Jan 25 '10 at 2:12
@Brad Larson: Thanks! – dan Jan 25 '10 at 2:15
feedback

6 Answers

up vote 30 down vote accepted
NSDate *methodStart = [NSDate date];

/* ... Do whatever you need to do ... */

NSDate *methodFinish = [NSDate date];
NSTimeInterval executionTime = [methodFinish timeIntervalSinceDate:methodStart];

Easy to use and has sub-millisecond precision.

link|improve this answer
Is the value returned in seconds? – Peter Warbo Jul 7 '11 at 11:39
@PeterWarbo NSTimeInterval is a typedef of double and is defined as seconds - see developer.apple.com/library/mac/#documentation/Cocoa/Reference/… – Ben Lings Nov 3 '11 at 14:50
1  
You can log this value with a %f - NSLog("executionTime = %f", executionTime); – Tony Jan 16 at 5:24
feedback

For fine-grained timing on OS X, you should use mach_absolute_time( ) declared in <mach/mach_time.h>:

#include <mach/mach_time.h>
#include <stdint.h>

// Do some stuff to setup for timing
const uint64_t startTime = mach_absolute_time();
// Do some stuff that you want to time
const uint64_t endTime = mach_absolute_time();

// Time elapsed in Mach time units.
const uint64_t elapsedMTU = endTime - startTime;

// Get information for converting from MTU to nanoseconds
mach_timebase_info_data_t info;
if (mach_timebase_info(&info))
   handleErrorConditionIfYoureBeingCareful();

// Get elapsed time in nanoseconds:
const double elapsedNS = (double)elapsedMTU * (double)info.numer / (double)info.denom;

Of course the usual caveats about fine-grained measurements apply; you're probably best off invoking the routine under test many times, and averaging/taking a minimum/some other form of processing.

Additionally, please note that you may find it more useful to profile your application running using a tool like Shark. This won't give you exact timing information, but it will tell you what percentage of the application's time is being spent where, which is often more useful (but not always).

link|improve this answer
Works great! Thanks :-) – MrDatabase Feb 19 '11 at 20:23
feedback

OK, if your objective is to find out what you can fix to make it faster, that's a little different goal. Measuring the time that functions take is a good way to find out if what you did made a difference, but to find out what to do you need a different technique. This is what I recommend, and I know you can do it on iPhones.

link|improve this answer
Thanks! Very interesting. – dan Jan 25 '10 at 2:16
feedback

I know this is an old one but even I found myself wandering past it again, so I thought I'd submit my own option here.

Best bet is to check out my blog post on this: Timing things in Objective-C: A stopwatch

Basically, I wrote a class that does stop watching in a very basic way but is encapsulated so that you only need to do the following:

[MMStopwatchARC start:@"My Timer"];
// your work here ...
[MMStopwatchARC stop:@"My Timer"];

And you end up with:

MyApp[4090:15203]  -> Stopwatch: [My Timer] runtime: [0.029]

in the log...

Again, check out my post for a little more or download it here: MMStopwatch.zip

link|improve this answer
feedback

I use this:

clock_t start, end;
double elapsed;
start = clock();

//Start code to time

//End code to time

end = clock();
elapsed = ((double) (end - start)) / CLOCKS_PER_SEC;
NSLog(@"Time: %f",elapsed);

But I'm not sure about CLOCKS_PER_SEC on the iPhone. You might want to leave it off.

link|improve this answer
CLOCKS_PER_SEC on iPhone is a wildly inaccurate value. – Max Howell Mar 13 '11 at 14:43
1  
Good to know. I'd use Matthew's answer if I had to do this now. – David Kanarek Mar 13 '11 at 16:17
feedback

Since you want to optimize time moving from one page to another in a UIWebView, does it not mean you really are looking to optimize the Javascript used in loading these pages?

To that end, I'd look at a WebKit profiler like that talked about here:

http://www.alertdebugging.com/2009/04/29/building-a-better-javascript-profiler-with-webkit/

Another approach would be to start at a high level, and think how you can design the web pages in question to minimize load times using AJAX style page loading instead of refreshing the whole webview each time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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