После предыдущего ответа я реализовал простой класс для измерения времени
Как это работает:
ABTimeCounter *timer = [ABTimeCounter new];
[timer restart];
//do some calculations
[timer pause];
//do some other staff
[timer resume];
//other code
//You can measure current time immediately
NSLog(@"Time left from starting calculations: %f seconds",[timer measuredTime]);
[timer pause];
Ваш .h файл должен выглядеть так:
@interface ABTimeCounter : NSObject
@property (nonatomic, readonly) NSTimeInterval measuredTime;
- (void)restart;
- (void)pause;
- (void)resume;
@end
.m файл:
@interface ABTimeCounter ()
@property (nonatomic, strong) NSDate *lastStartDate;
@property (nonatomic) BOOL isCounting;
@property (nonatomic, readwrite) NSTimeInterval accumulatedTime;
@end
@implementation ABTimeMeasure
#pragma mark properties overload
- (NSTimeInterval) measuredTime
{
return self.accumulatedTime + [self p_timeSinceLastStart];
}
#pragma mark - public -
- (void) restart
{
self.accumulatedTime = 0;
self.lastStartDate = [NSDate date];
self.isCounting = YES;
}
- (void) pause
{
if (self.isCounting){
self.accumulatedTime += [self p_timeSinceLastStart];
self.lastStartDate = nil;
self.isCounting = NO;
}
}
- (void) resume
{
if (!self.isCounting){
self.lastStartDate = [NSDate date];
self.isCounting = YES;
}
}
#pragma mark - private -
- (NSTimeInterval) p_timeSinceLastStart
{
if (self.isCounting){
return [[NSDate date] timeIntervalSinceDate:self.lastStartDate];
}
else return 0;
}
@end