请有人帮我找出包含学生姓名的数组的排序元素:
NSArray *studentsNames=@[@"bill", @"rob", @"ady",@"jhon", @"robert", @"prince"];
NSArray
中存在的所有排序函数如下:
sortedArrayHint
sortedArrayUsingFunction:context
sortedArrayUsingFunction:context:hint
sortedArrayUsingDescriptors
sortedArrayUsingSelector
sortedArrayUsingComparator
sortedArrayWithOptions:usingComparator
请给我适当的例子或链接。
答案 0 :(得分:1)
您可以按以下方式对NSArray进行排序
studentsNames = [anArray sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
希望这会对你有所帮助。