找到匹配姓名的联系人的最快方法?

发布于 2024-12-02 23:19:06 字数 277 浏览 0 评论 0原文

我有一个充满 NSArray 的 TableView,其中包含地址簿中一些联系人的 NSString 名称,详细而言单元格的 TextLabel 必须显示该联系人的一些信息。对于每个单元格,我将地址簿中的所有联系人复制到一个数组,使用 filteredArrayUsingPredicate 方法搜索 all_contacts 数组以查找与当前单元格名称匹配的联系人,返回其 RecordID,然后获取要显示的信息详细文本标签。但它太慢了,TableView 会平滑滚动。 查找与姓名匹配的联系人的最快方法是什么?

I have a TableView filled with NSArray containing NSString names of some contacts from address book, in detailTextLabel of cells some information from that contact have to be shown. For every cell, I copy all contacts from addressbook to an array, search the all_contacts array using filteredArrayUsingPredicate method to find the contact matching the name of current cell, return its RecordID, then get the information to display in detailTextLabel. But it's tooooo slow and TableView will scrolling smoothly.
What is the fastest way to find a contact matching a name?

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

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

发布评论

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

评论(1

嘦怹 2024-12-09 23:19:06

如果您需要大量搜索姓名,您可以通过数组和字典来跟踪您的对象吗?然后您可以使用字典按姓名查找人员,您将如何将它们包装在一些方法甚至类中两者同步。

If you need to search against names a lot, can you keep track of your objects by array and dictionary, you can then use the dictionary to lookup people by name, you will what to wrap these up in a few methods or even class that keeps the two in sync.

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