我是objective-c,ios的新手。我正在尝试按字母顺序对一个名为 filteredList 的 NSMutableArray 进行排序,其中包含 NSString 类型的对象。
所以如果我的可变数组包含: [Mary, Bill, John] 我想要 [Bill, Mary, John]
我做了以下事情:
[filteredList sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
但我没有看到任何变化。我确实阅读并尝试了其他解决方案,例如 compare: 而不是本地化CaseInsensitiveCompare 但仍然没有。