第一张图中,tap gesture是可以在红框框中点击的。
然后我删除了购物车中的item,改变了白色tablview的frame,这个时候将blur view 多暴露的一块。
第二张图,下面的小红框框,blur view 多暴露的这一块,tap 就失效了。
我尝试过每次改变tableview的frame之后,再次添加gesture,但是无效。
self.blurEffectView.frame = CGRectMake(0, 0, self.view.frame.size.width, rootView.frame.size.height - cartViewHeight);
// let blur view full of screen.
self.tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapGestureHandle:)];
[self.blurEffectView addGestureRecognizer:self.tapGesture];
可能被遮蓋,還是盡可能提供更多代碼
為了更好的幫助您解決問題,建議您提供一個demo
先移除再添加有效嗎
這個手勢和tableview的didselect有衝突吧 你禁用了didselect 再試試