我有一个这样的数组值:{apple,queen,microsoft,50cent}。我想对数组的字母顺序和最后的 50cent 进行排序。我正在使用以下方法,但它将 50cent 排序在顶部:
[albums sortUsingDescriptors:[NSArray arrayWithObject:
[[[NSSortDescriptor alloc]
initWithKey:@"name"
ascending:YES
selector:@selector(localizedCaseInsensitiveCompare:)]
autorelease]]];