I need help on how to find out how many days it has been (seven day weeks, MSTimezone) since May 6th, 2009
[NSDate *m62009 = [NSDate dateWithTimeIntervalSinceReferenceDate:231638400]; (to help you – 231638400 seconds from 1/1/2001)
[m62009 setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"MST"];
Edit:
And then how can I convert the NSTimeInterval into days as an integer or string
This has been covered here, but the solution you’re looking for should be something like the following:
You can then format the NSTimeInterval as you see fit.