tags:

views:

33

answers:

1

In order to measure the time duration while my app is running, as well as the time that passed while my app was idle in the background, I need a reference clock that is not altered by the user changing the Time+Date of his calendar clock.

I can not rely on NSDate because that can be changed by the user while my app is in the background (and no, intercepting the notifications related to such clock changes is overkill for my needs).

What I need is a function such as "seconds since boot of the OS". Mac OS offer such functions (both Ticks and Microseconds), but what about iOS?

A: 

Are you looking for something like this?

http://www.wand.net.nz/~smr26/wordpress/2009/01/19/monotonic-time-in-mac-os-x/

Deniz Mert Edincik
Ahh. mach_absolute_time() - yes, that works. Thanks!
Thomas Tempelmann
Uh - my own testing shows, though, that the time is not very precise: after a real 60 seconds, this function only told me that 59s had passed (after 120s it was 118s, and so on). Sigh. Not critical for my current task but I still wonder what's going on there and why we cannot find a precise time reference on iOS.
Thomas Tempelmann