ios – 选择单元格时如何获取节标题视图的标题

前端之家收集整理的这篇文章主要介绍了ios – 选择单元格时如何获取节标题视图的标题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UITableView有很多部分,每个部分只有1行.

我想要做的是,当我点击特定单元格时,应该更改与单元格对应的标题标题.

我使用-tableView:viewForHeaderInSection设置了节头:

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

解决方法

我建议实现tableView:titleForHeaderInSection:和tableView:viewForHeaderInSection :(如果两者都实现,那么iOS更喜欢viewForHeaderInSection :).然后让你的tableView实现:viewForHeaderInSection:用标签创建它的视图,并用tableView的结果填充它:titleForHeaderInSection ::
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
     UIView *yourHeaderView;
     UILabel *someLabel;

     // set up the view + label

     // if self doesn't implement UITableViewDelegate,you can use tableView.delegate
     someLabel.text = [self tableView:tableView titleForHeaderInSection:section];

     return yourHeaderView;
}

现在,当您回答行敲击时,很容易获得相应的标题

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
     NSString *titleForHeader = [self tableView:tableView titleForHeaderInSection:indexPath.section];
}

猜你在找的iOS相关文章