检测哪个UITableViewCell被点击,并更改UILabel值?

时间:2014-01-26 01:00:03

标签: objective-c uitableview

我想知道当你点击UITableViewCell中的UITableView时如何制作它,会调用一个方法来更改UILabel的文字。非常感谢!

1 个答案:

答案 0 :(得分:3)

假设你还没有尝试过使用didSelectRowAtIndexPath,你可以这样做:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{
    self.label.text = @"Test";

}