didSelectRowAtIndexPath任意调用

时间:2012-08-09 08:44:48

标签: objective-c ios uitableview

我有一个包含UITableView的UIViewController。一切都到位:数据源,代表,IB中的所有内容。 didSelectRowAtIndexPath不会一直被调用。我没有透明的视图或按钮可以覆盖我触摸的行。 任何想法为什么会这样?

didSelect中没有奇特的东西:

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

1 个答案:

答案 0 :(得分:2)

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