Hi: In an iPhone application I use a library(C++) which asynchronously makes a callback when computation is finished.
Now I want to measure the time which is spent -including the method which calls the library- until the callback is made. Are there any possibilities to do this with the Instruments application from Apple? What are the best practices?
Hi: In an iPhone application I use a library(C++) which asynchronously makes a callback
Share
In the past I have used the following for making network calls I had to optimize – although at first it seems a bit convoluted, it certainly gives the most accurate times I have seen.