如何使用 ABPeoplePickerNavigationController 选择地址簿中的多个条目
我需要允许用户在继续下一步操作之前从 iPhone 地址簿中选择多个条目。
目前,如果我使用 ABPeopleNavigationController,它只允许我一次选择一个条目。有什么方法可以允许多项选择,即在单击“完成”按钮之前在我想要选择的所有名称旁边添加复选标记
I need to allow the user to select multiple entries from the iPhone address book before proceeding to the next action.
Currently if I use the ABPeopleNavigationController, it only allows me to pick one entry at a time. Is there any way to allow multiple selections i.e. add a checkmark beside all the names I want to select before clicking on 'done' button
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是标准
ABPeopleNavigationController
不可能实现的。您必须使用 UITableView 来提供要选择的人员列表并启用多重选择 - 基本上您必须自己完成这一切。这并不难。只需在您的人员列表中编写自定义表数据源即可。
This is not possible with the standard
ABPeopleNavigationController
.You'll have to use a
UITableView
to provide the list of people to select and enable multiple selection - basically you have to do it all yourself. It isn't that hard. Just write a custom table data source on your list of people.