0

我有一个包含 UITableView 的 UIViewController。一切就绪:数据源、委托、连接 IB 中的所有内容。didSelectRowAtIndexPath 并非一直被调用。我没有可以覆盖我触摸的行的透明视图或按钮。任何想法为什么会发生这种情况?

在 didSelect 中没有花哨的东西:

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"IT WORKS");
}
4

1 回答 1

2

我找到了!您使用了 did* De *selectRowAtIndexPath 而不是 didSelectRowAtIndexPath。

于 2012-08-09T09:41:27.610 回答