0

我有字符串数组

 NSMutableArray * nam = [[NSMutableArray alloc] initWithObjects:@"ZAZ", @"London", @"Australia",@"England", @"Dallas", @"Mexico", @"Russia", nil]; 

如何按字母顺序从此字符串创建索引的 TableView ???就像在“通讯录”中一样!或者也许有人知道这个问题的一些教训?

4

1 回答 1

2

编辑:创建UITableView跟随链接。使用 newArray 作为 tableview 数组

像这样按字母顺序对 NSMutableArray 进行排序:

NSMutableArray *newArray = [nam sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];

将此 newArray 用作TableViewDataSource按字母顺序排列的单元格的数组

于 2012-08-09T11:03:05.430 回答