按字母顺序显示 UITableView NSArray

发布于 2024-11-26 00:06:36 字数 78 浏览 2 评论 0原文

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

How to display UITableView in alphabetical order, similar to the way iPod.app does with the sections and the sectionIndex. I have searched in Apple documentation without success. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

归途 2024-12-03 00:06:36

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

排序数组 = [原始数组
sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];

If you would only like to sort an array of strings alphabetically, you can achieve it by:

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

无人问我粥可暖 2024-12-03 00:06:36
NSArray *myArray = [NSArray arrayWithObject:@"me", @"you", @"her", nil];

[myArray sortedArrayByPerformingSelector:@selector(compare:)];
NSArray *myArray = [NSArray arrayWithObject:@"me", @"you", @"her", nil];

[myArray sortedArrayByPerformingSelector:@selector(compare:)];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文