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.
たとえば、2つの重複するUIViewレイヤーがあります。
----view-top --view-below
画面をタッチするときは、1つだけでなく、この2つのビューでタッチを処理したいと思います。
どうやってやるの?
これを試して:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [self.nextResponder touchesBegan:touches withEvent:event]; }
これにより、チェーン内の次のレスポンダー、この場合はあなたのビューにタッチが送信されます。