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.
feedback
|
Easy to use and has sub-millisecond precision. | |||||||||
feedback
|
|
For fine-grained timing on OS X, you should use
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). | |||
|
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. | |||
|
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:
And you end up with:
in the log... Again, check out my post for a little more or download it here: MMStopwatch.zip | |||
|
feedback
|
|
I use this:
But I'm not sure about CLOCKS_PER_SEC on the iPhone. You might want to leave it off. | |||||||
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. | |||
|
feedback
|