我有TableView的ViewController。对于这个TableView我写了自定义的TableViewCell类。 我的手机只包含2个标签。 我需要点击这个细胞然后做点什么。我试过
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
里面有一些警报,但什么都没发生。我不能使用一些方法,比如在单元格上使用隐形按钮,因为我必须从TableView获取一些数据,如indexPath等,我将不会在我的customCell类中获取。
答案 0 :(得分:1)
使用didSelectRowAtIndexPath
代替didDeselectRowAtIndexPath
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath