在我的 ViewController 中,我得到了-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
,但这永远不会被调用。我搜索了为什么没有调用它,我发现我使用了这个:
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]
initWithTarget:self
action:@selector(dismissKeyboard)];
[self.view addGestureRecognizer:tap];
点击背景时关闭键盘。知道如何解决这个问题,dismisskeyboard 点击背景和didSelectRowAtIndexPath
工作?