如何按字母顺序显示UITableView,类似于iPod.app对section和sectionIndex的处理方式。我在Apple文档中搜索没有成功。有什么建议吗?
答案 0 :(得分:1)
如果您只想按字母顺序对字符串数组进行排序,可以通过以下方式实现:
sortedArray = [originalArray sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
答案 1 :(得分:0)
NSArray *myArray = [NSArray arrayWithObject:@"me", @"you", @"her", nil];
[myArray sortedArrayByPerformingSelector:@selector(compare:)];