0

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];

私の戻り値は明日(最新の日付)になるはずです。

4

2 に答える 2

0

sortedArrayUsingComparatorを使用して、この From NSArray および NSDate クラスをそれぞれ比較できます

NSArray *sortedDates = [arr sortedArrayUsingComparator: 
                                                     ^(id obj1, id obj2) {
                                                          return [obj1 compare:obj2];
                                                     }];
NSLog(@"%@",[sortedDates lastObject]); // SortedDates Contains dates in ascending Order (last object of the array returns the latest date. 
于 2012-08-14T06:22:49.263 に答える
0

以下を使用できます。

[arr lastObject]; //Returns the object in the array with the highest index value.

また

[arr objectAtIndex:[arr count]-1];
于 2012-08-14T06:14:47.310 に答える