NSArray に NSdate オブジェクトがあります。日付の配列から最新のものを取得したい。
NSDate *tomorrow = [NSDate dateWithTimeInterval:(24*60*60) sinceDate:[NSDate date]];
NSDate *today = [NSDate date];
NSDate *yesterday = [NSDate dateWithTimeInterval:-(24*60*60) sinceDate:[NSDate date]];
NSMutableArray* arr = [[NSMutableArray alloc] initWithObjects:today,yesterday,tomorrow,today,yesterday,tomorrow, nil];
私の戻り値は明日(最新の日付)になるはずです。