gpt4 book ai didi

ios - 选择单元格时如何获取节标题 View 的标题

转载 作者:可可西里 更新时间:2023-11-01 03:07:09 24 4
gpt4 key购买 nike

我有一个 UITableView,它有很多 部分,每个部分只有 1 行。

我想要做的是,当我点击一个特定的单元格时,对应于该单元格的标题标题应该被更改。

我已经使用 -tableView:viewForHeaderInSection: 设置了部分标题

如何在 -tableView:didSelectRowAtIndexPath: 方法中获取行标题?

最佳答案

您可以获得所选索引的标题 View ,例如:

UIView *headerView=[deviceTable headerViewForSection:indexPath.section];

然后循环通过.like从headerView中获取child

for(UIView *view in headerView.subviews)
{
if ([v isKindOfClass:[UILabel class]])
{
UILabel *label=(UILabel *)v;
NSString *text=label.text;
}
}

编辑:正如 Desdenova 建议的那样:

    UITableViewHeaderFooterView *headerView=[deviceTable headerViewForSection:indexPath.section];
NSString *title=headerView.textLabel.text;

关于ios - 选择单元格时如何获取节标题 View 的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16014338/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com