I need to get time that elapsed between two events: for example between appearance of UIView and between user's first reaction.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||||||||||
|
|
Use the
|
|||
|
|
|
For anybody coming here looking for a getTickCount() implementation for iOS, here is mine after putting various sources together:
|
|||
|
|
|
For percise time measurements (like GetTickCount), also take a look at mach_absolute_time and this Apple Q&A: http://developer.apple.com/qa/qa2004/qa1398.html. |
|||
|
|
|
use the timeIntervalSince1970 function of the NSDate class like below:
basically, this is what i use to compare the difference in seconds between 2 different dates. also check this link here |
|||
|
|