Implement length formatter in terms of NSMeasurementFormatter

This commit is contained in:
Gregory John Casamento 2019-10-24 14:18:47 -04:00
parent de73db605c
commit ea21e48218
4 changed files with 65 additions and 9 deletions

View file

@ -34,8 +34,9 @@
self = [super init];
if(self != nil)
{
_startDate = nil;
_startDate = [NSDate date];
_duration = 0.0;
RETAIN(_startDate);
}
return self;
}