-1

我有一个 UITableView,在那里我得到一个带有 UILabel 和 UIButton 的 customUITableViewCell,我想在按下同一行中的按钮后更改特定行的标签文本值。请帮助我,我是 iPhone 的新手。

4

1 回答 1

3

请检查您是否映射了按钮的操作并继续此操作..

-(void)yourButtonClicked:(id)sender {
  CustomCell *clickedCell = [[sender superView]superView];
  NSindexPath *indexPath = [YourTableViewObject indexPathForCell:clickedCell];
  NSLog(@"%d %d",indexPath.section,indexPath.row);  
}

在这里,您将获得单击单元格的行..

然后您可以轻松更改标签文本..通过

clickedCell.yourLabel.text = @"Your string";
于 2012-12-01T13:25:19.903 回答