I would like to compare the difference between the two dates, but with the code below I got the error "[NSCFString timeIntervalSinceReferenceDate]: unrecognized selector sent to instance". What is wrong with the code?
NSDate *dateAdded=[eventDictionary objectForKey:@"dateAdded"]; NSDate *validUntilDate=[eventDictionary objectForKey:@"validUntilDate"]; NSDateComponents *sometimeAgo = [[NSCalendar currentCalendar] components:(NSSecondCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit) fromDate:dateAdded toDate:validUntilDate options:0];
source share