我想知道当你点击UITableViewCell
中的UITableView
时如何制作它,会调用一个方法来更改UILabel
的文字。非常感谢!
答案 0 :(得分:3)
假设你还没有尝试过使用didSelectRowAtIndexPath,你可以这样做:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
self.label.text = @"Test";
}