更新 UITableView titleForFooterInSection 的 UISlider 的 valueChanged 吗?

发布于 2024-08-18 08:49:53 字数 283 浏览 6 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

極樂鬼 2024-08-25 08:49:53

将滑块连接到控制器中的操作方法:

[theSlider addTarget:self 
              action:@selector(adjustSliderValue:) 
    forControlEvents:UIControlEventValueChanged];

实现滑块操作方法:

- (void) adjustSliderValue: (UISlider *) slider
{
    // Change controller's state here. 
    // The next line will trigger -tableView:titleForFooterInSection:
    [self.tableView reloadSections:[NSIndexSet indexSetWithIndex: mySectionIndex] 
                  withRowAnimation:UITableViewRowAnimationNone];
}

这比重新加载整个表格更有效。不幸的是,无法直接设置节页脚文本。

Connect your slider to an action method in your controller:

[theSlider addTarget:self 
              action:@selector(adjustSliderValue:) 
    forControlEvents:UIControlEventValueChanged];

Implement the slider action method:

- (void) adjustSliderValue: (UISlider *) slider
{
    // Change controller's state here. 
    // The next line will trigger -tableView:titleForFooterInSection:
    [self.tableView reloadSections:[NSIndexSet indexSetWithIndex: mySectionIndex] 
                  withRowAnimation:UITableViewRowAnimationNone];
}

This is more efficient than reloading the whole table. Unfortunately, there is no way to set a section footer text directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文