3

英数字の名前のリストがあり、以下のコードを実行すると、数字はA-Z (0-9 A-Z).

NSSortDescriptorこれを配列の最後に配置するにはどうすればよい(A-Z 0-9)ですか?

NSSortDescriptor *sortNameSortDescriptor = 
[NSSortDescriptor sortDescriptorWithKey:@"sortName"
ascending:YES
selector:@selector(localizedStandardCompare:)];

NSArray *sortedArray = [sortSectionsArray sortedArrayUsingDescriptors:@[ sortNameSortDescriptor ]];
4

1 に答える 1