comment puis-je comparer deux dates de retour nombre de jours. Ex: X jours manquants de la coupe. regarde mon code.Comment puis-je comparer deux dates, retourner un nombre de jours
NSDateFormatter *df = [[NSDateFormatter alloc]init];
[df setDateFormat:@"d MMMM,yyyy"];
NSDate *date1 = [df dateFromString:@"11-05-2010"];
NSDate *date2 = [df dateFromString:@"11-06-2010"];
NSTimeInterval interval = [date2 timeIntervalSinceDate:date1];
//int days = (int)interval/30;
//int months = (interval - (months/30))/30;
NSString *timeDiff = [NSString stringWithFormat:@"%dMissing%d days of the Cup",date1,date2, fabs(interval)];
label.text = timeDiff; // output (Missing X days of the Cup)
Vous pouvez Cochez cette réponse http://stackoverflow.com/questions/13236719/number-of-days-between-two-nsdate-objects il a aidé à résoudre mon problème –