提示用户在 iPhone 应用程序中进行多项选择
我目前正在寻找一种方法,使用户能够从值集合中选择多个项目。
我知道这是在邮件应用程序中完成的,您可以进入文件夹的编辑模式并通过单击左侧的圆圈来选择多个项目。
我不确定这是如何实现的。有谁熟悉如何重现此类功能?
谢谢, 马特·德尔维斯
I'm currently looking for a way to provide the user with being able to select multiple items from a collection of values.
I know this is done in the mail app whereby you can go into the edit mode of a folder and select multiple items by clicking on the circle on the left hand side.
What I'm unsure about is how this is achievable. Is anyone familiar with how to reproduce such functionality?
Thanks,
Matt Delves
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是:
tableView:didSelectRowAtIndexPath:
中,在数组中切换点击行的选择状态,并将点击单元格的附件类型设置为复选标记或无,具体取决于选择状态。The easiest way is this:
tableView:didSelectRowAtIndexPath:
, toggle the selection state in your array for the tapped row and set the tapped cell's accessory type to checkmark or none, depending on the selection state.