Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to get time that elapsed between two events: for example between appearance of UIView and between user's first reaction.

share|improve this question

5 Answers

up vote 111 down vote accepted
NSDate *start = [NSDate date];
// do stuff...
NSTimeInterval timeInterval = [start timeIntervalSinceNow];

timeInterval is the difference between start and now, in seconds, with sub-millisecond precision.

share|improve this answer
+1, Nice and East Answer. Thanks. :) – mAc Jun 1 '12 at 8:27
so it's a negative value if I understood correctly – Nicolas Zozol Jun 20 '12 at 10:19
8  
@NicolasZozol you can use fabs(...) to get the absolute value of a float. Eg. NSTimeInterval timeInterval = fabs([start timeIntervalSinceNow]); – So Over It Jun 23 '12 at 5:01
seems the value of timeInterval is negative. – Kuang Yuang Jan 13 at 9:19
if you get a negative value - multiply with -1 and you're good – PinkFloydRocks Mar 8 at 9:04

Use the timeIntervalSinceDate method

NSTimeInterval secondsElapsed = [secondDate timeIntervalSinceDate:firstDate];

NSTimeInterval is just a double, define in NSDate like this:

typedef double NSTimeInterval;
share|improve this answer

For anybody coming here looking for a getTickCount() implementation for iOS, here is mine after putting various sources together:

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

uint64_t getTickCount(void)
{
    static mach_timebase_info_data_t sTimebaseInfo;
    uint64_t machTime = mach_absolute_time();

    // Convert to nanoseconds - if this is the first time we've run, get the timebase.
    if (sTimebaseInfo.denom == 0 )
    {
        (void) mach_timebase_info(&sTimebaseInfo);
    }

    // Convert the mach time to milliseconds
    uint64_t millis = ((machTime / 1000000) * sTimebaseInfo.numer) / sTimebaseInfo.denom;
    return millis;
}
share|improve this answer

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.

share|improve this answer

use the timeIntervalSince1970 function of the NSDate class like below:

double start = [startDate timeIntervalSince1970];
double end = [endDate timeIntervalSince1970];
double difference = end - start;

basically, this is what i use to compare the difference in seconds between 2 different dates. also check this link here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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