UITableViewCellAccessory 检查
我有一个在表视图中加载的数组,如果用户点击某个单元格,它会更改为 UITableViewCellAccessoryCheckmark。 如何检查数组中的哪个对象被检查并将检查的所有对象添加到另一个数组?
I have an array which loads in table view, and if users taps a certain cell it changes to UITableViewCellAccessoryCheckmark.
How can I check what object in array is checked and add all objects that are checked to another array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想要一个能够随心所欲地实际获取已检查对象的函数,请使用以下命令:
这将允许您按需获取数据。请注意,它比简单使用 Jasarien 的方法效率低得多,但在某些情况下它是更好的解决方案。
If you want a function that actually gets the checked objects at a whim, use the following:
That would allow you to get the data on demand. Note that it would be much less efficient than simply using Jasarien's method, yet there are some situations where it is a better solution.
在您的
tableView:didSelectRowAtIndexPath:
方法中类似这样的内容:Something like this in your
tableView:didSelectRowAtIndexPath:
method: