按下Custom UITableViewCell中的按钮后如何更改标签文本

时间:2012-12-01 13:18:39

标签: iphone objective-c ios ipad

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

1 个答案:

答案 0 :(得分: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";