更新 UITableView titleForFooterInSection 的 UISlider 的 valueChanged 吗?
我有一个 UITableViewCell,里面有一个 UISlider。我有一个表格视图的页脚文本,我想用 UISlider 的值进行更新。
但是,调用 [self.tableView reloadData];不适用于 UISlider,因为它的调用次数太多。我能够正确更新单元格(它也显示值),但我无法更新页脚文本。我已经尝试过:
[self tableView:self.tableView titleForFooterInSection:0];
但它不起作用..
I have a UITableViewCell which has a UISlider in it. I have a footer text for the tableview that I would like to update with the value of the UISlider.
However, calling [self.tableView reloadData]; does not work for the UISlider, as it is too many calls. I am able to update the cell correctly (it also shows the value), but I am unable to update the footer text. I have tried:
[self tableView:self.tableView titleForFooterInSection:0];
But it doesn't work..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将滑块连接到控制器中的操作方法:
实现滑块操作方法:
这比重新加载整个表格更有效。不幸的是,无法直接设置节页脚文本。
Connect your slider to an action method in your controller:
Implement the slider action method:
This is more efficient than reloading the whole table. Unfortunately, there is no way to set a section footer text directly.