I have observed the documentation for a particular method which gets an interval between a date:
- (NSTimeInterval)timeIntervalSinceDate:(NSDate *)anotherDate
What I need this this method (or an alternative) to provide me with the Years and Days since a given date.
How would I be able to calculate this? I could use days/365 and then the remainder be the days but this isn't very accurate and I need accuracy for this.
Thanks!