NSSortDescriptor* sortOrder = [NSSortDescriptor sortDescriptorWithKey: @"self" ascending: NO];
NSLog(@"%@",[ratio sortedArrayUsingDescriptors: [NSArray arrayWithObject: sortOrder]]);
我排序的數組,但不能從數組中選擇最大和最小的對象。我怎樣才能做到這一點?Sorted Array選擇最大和最小的對象
NSLog
屏幕如下所示; 99, 99, 99, 91, 91, 88, 88, 88, 88, 77, 77, 66, 66, 66,
我怎樣才能採取objectforkey:0
在有序陣列
的可能重複[我怎樣才能採取的NSArray最大對象](http://stackoverflow.com/questions/7876958/how-can-i-take-nsarray-biggest-object) –