我有视图控制器与UITableView.表视图的高度是静态的,==屏幕的高度.表中的行数可以更改,有时可能是行数小于可以看到的行数的情况,因此表底部有一些清晰的区域.我可以在没有手势识别器的情况下检测到它吗? UITableView有一些委托方法吗?
解决方法
是的,有委托方法,如:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
但是,这只会告诉您是否在现有行上发生点击.如果要在行(或部分标题)下的空白空间捕获水龙头,则需要使用手势识别器.你可以这样做:
// in viewDidLoad or somewhere similar UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tableTapped:)]; [self.tableView addGestureRecognizer:tap]; //......... - (void)tableTapped:(UITapGestureRecognizer *)tap { CGPoint location = [tap locationInView:self.tableView]; NSIndexPath *path = [self.tableView indexPathForRowAtPoint:location]; if(path) { // tap was on existing row,so pass it to the delegate method [self tableView:self.tableView didSelectRowAtIndexPath:path]; } else { // handle tap on empty space below existing rows however you want } }
编辑:对于另一种方法,从他对这篇文章的回答中考虑Connor Neville’s approach,并将手势识别器添加到表的背景中.