问题描述
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(keyBoardHidden)]; [self.view addGestureRecognizer:tap]; 这个方法可以隐藏键盘,但是手势会遮挡tableview 上的cell的点击时间,单击无法调用didSelectRowAtIndexPath,长按才能触发, 把上面方法去掉以后可以触发到didSelectRowAtIndexPath方法,但是又不好去隐藏键盘了,这里应该怎样判断呢? 请环信大牛帮忙指教一下,叶良辰不胜感激 = =
解决方案
加上-(void)touchupend
时间: 2025-01-31 05:49:28