按字母顺序显示UITableView NSArray

时间:2011-07-25 14:04:45

标签: objective-c uitableview nsarray ipod

如何按字母顺序显示UITableView,类似于iPod.app对section和sectionIndex的处理方式。我在Apple文档中搜索没有成功。有什么建议吗?

2 个答案:

答案 0 :(得分:1)

如果您只想按字母顺序对字符串数组进行排序,可以通过以下方式实现:

  

sortedArray = [originalArray   sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];

答案 1 :(得分:0)

NSArray *myArray = [NSArray arrayWithObject:@"me", @"you", @"her", nil];

[myArray sortedArrayByPerformingSelector:@selector(compare:)];