如何使用“全选”获取 UITableView和“取消全选”按钮
我想要桌面视图附件按钮,例如全选或取消全选。
cell.Accessory = UITableViewCellAccessory.None; 我想要一个按钮示例:“全选” 当用户触摸此按钮时,每个单元的配件都应选中。 或者我想要“重置”按钮。如果用户触摸此按钮,每个复选标记都会消失,并且 Cell 的配件不会消失。
I want to tableview accessory button like selectall or deselectall.
cell.Accessory = UITableViewCellAccessory.None;
I want to a button example :"select all"
When user touch this button everycell's accessory should checkmark.
Or I want "Reset" button. if user touch this button every checkmark disappear and Cell's accesory shoul none.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能已经发现使用 UITableView 有点复杂。不过,MonoTouch 有一个很棒的库,名为 MonoTouch.Dialog,它使事情变得更加容易。
以下示例代码使用 MonoTouch.Dialog 来回答您的问题(据我所知,如果我的答案与您想要的不符,请告诉我)。
享受 MonoTouch(和 MonoTouch.Dialog)的乐趣!
As you have likely found out using UITableView is a bit complicated. However there's a wonderful library available for MonoTouch called MonoTouch.Dialog that makes things a lot easier.
The following sample code is using MonoTouch.Dialog to answer your question (as much as I understand it, let me know if my answer does not match what you wanted).
Have fun with MonoTouch (and MonoTouch.Dialog)!
您可以签出 此演示来自developer.apple.com。希望对您有帮助。
You can checkout this demo from developer.apple.com. Hope it help you.