{apple、queen、microsoft、50cent}のような配列値があります。私は配列のアルファベット順と50centを最後にソートしたい。私は次の方法でやっていますが、上に50centを並べ替えます。アルファベット順にアルファベット順にソート
[albums sortUsingDescriptors:[NSArray arrayWithObject:
[[[NSSortDescriptor alloc]
initWithKey:@"name"
ascending:YES
selector:@selector(localizedCaseInsensitiveCompare:)]
autorelease]]];
http://stackoverflow.com/questions/8242735/how-to-sort-array-controller-alphabetically-with-numbers-last-in-objective-c –