Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GLKView の上にボタンがあります。ボタンをクリックすると、ボタンの後ろにあるGLKViewでロングタッチ通知も受け取ります。
通知がビューに伝播しないようにするにはどうすればよいですか?
私の質問に対する解決策を見つけました。次のコードはトリックを行います:
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch { UIView* viewRceivingTouch = touch.view; return (viewRceivingTouch == self.glkView); }