2011-09-02 124 views
0

可能重複:
How to sort a NSArray alphabetically?如何對NSArray進行排序?

我使用以下代碼來從數據的NSArray加載到UITableView的。

我該如何按字母順序對它們進行排序? 煤礦是NSArrayNSMutableArray也不是我使用Dictionary

defaultVot = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:pathToVot error:&error]; 

NSString *fileName = [[defaultVot objectAtIndex:indexPath.row-1] lastPathComponent]; 

NSString *filenameWithoutExtension = [fileName substringToIndex:[fileName length] -4]; 

cell.textLabel.text = filenameWithoutExtension; 
+2

也許這[link] [1]會有所幫助。 [1]:http://stackoverflow.com/questions/1351182/how-to-sort-a-nsarray-alphabetically – mayuur

回答

2
sortedArray = [yourArray sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)]; 
1

你可以看到如何做到這一點Apple's documentation

作爲一個例子:

// From the Documentation 
sortedArray = 
    [anArray sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)]; 

這將返回使用該規則的當前區域排序的新陣列(在不區分大小寫的方式)。

3

你可能應該先排序你的數組。 (可能在加載列表時)。然後使用已排序的數組作爲數據源。

NSArray * defaultVot = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:pathToVot error:&error]; 
NSMutableArray * array = [NSMutableArray arrayWithCapacity:[defaultVot count]]; 
for (NSString * f in defaultVot){ 
    NSString *fileName = [f lastPathComponent]; 
    NSString *filenameWithoutExtension = [fileName substringToIndex:[fileName length] -4]; 
    [array addObject:filenameWithoutExtension]; 
} 
NSArray * sortedArray = [array sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)]; 
相關問題