Ниже приведен код, который используется для определения интервала между датой и временем для этого кода, приведенного ниже. Справка для этого
NSDateComponents *comp=[[NSCalendar currentCalendar] components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit) fromDate:[NSDate date] toDate:"Your date is here" options:0] ;
cell.detailTextLabel.text=[NSString stringWithFormat:@"%d : %d : %d : %d : %d : %d",comp.year,comp.month,comp.day,comp.hour,comp.minute,comp.second];
Это может помочь для вашего приложения
Счастливое кодирование
@ Сэмюэл