When tracking time since a date using NSTimeInterval, it shows 0.000000 in the NSLog. Here is my Time Interval:
NSTimeInterval timeInterval = [intialtime timeIntervalSinceNow];
Here is how I log the data:
NSLog(@"%f",timeInterval);
What am I missing? Also, I want the time interval to show minutes since the date. Would I need to change anything to make this happen?