-1
可能重複:
best way to sort NSArray
Sort an array with special characters - iPhone如何在數組中將數字排序爲字符串?
你好,
我有數組中,我有存儲字符串的數字。
如何按acsending命令排序該數組?
可能重複:
best way to sort NSArray
Sort an array with special characters - iPhone如何在數組中將數字排序爲字符串?
你好,
我有數組中,我有存儲字符串的數字。
如何按acsending命令排序該數組?
NSArray *sortedArray = nil;
sortedArray = [oldArray sortedArrayUsingFunction:sortArray context:NULL];
NSInteger intSort(id num1, id num2, void *context) {
// OR: float n1 = [num1 floatValue]; etc.
int n1 = [num1 intValue];
int n2 = [num2 intValue];
if (n1 < n2) {
return NSOrderedAscending;
} else if (n1 > n2) {
return NSOrderedDescending;
} else {
return NSOrderedSame;
}
}
已經在此論壇討論 –
Rams
2011-05-23 12:27:39