我不知道发生了什么,但是当我延长点击表视图标题单元格时,应用程序崩溃并出现Bad Excess Error。我没有在viewController或我的自定义tableViewCell类中注册任何tapGestures。
这是我标题单元格的代码
CustomTableViewCell = (CustomTableViewCell *)[self.tableView dequeueReusableCellWithIdentifier:@"headerCell"];
UIView *view = cell.contentView;
return view;
答案 0 :(得分:0)
好的经过一些研究发现这个小黑客。
while (cell.contentView.gestureRecognizers.count) {
[cell.contentView removeGestureRecognizer:[cell.contentView.gestureRecognizers objectAtIndex:0]];
}
How to Implement Custom Table View Section Headers and Footers with Storyboard