英数字の名前のリストがあり、以下のコードを実行すると、数字は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 ]];