更改UITableView所有行的accessorytype
我想在单击栏按钮项时更改 UITableView 所有单元格的附件类型。是否有任何想法或代码。
I want to Change the accessory type of all the cells of UITableView on click the bar button item.Is there any idea or code for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需取一个标志(布尔值或其他东西)并在表视图上调用 reloadData 即可。并在 cellForRowAtIndexPath 中测试您的标志并放置您想要的任何配件。
Just take an flag (a bool or something) and call reloadData on your table view. And in cellForRowAtIndexPath test for your flag and put any accessory you want.
在
tableView:cellForRowAtIndexPath:
中,单击栏按钮项时,
In
tableView:cellForRowAtIndexPath:
,On click of the bar button item,
您可以在其中检查您的状况并将电池的附件类型更改为以下任何值
where you can check your condition and change the accessory type of the cell to have any of the following values