Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a UIView subclass with several subviews and I want to handle these events in the class:

  • touchesBegan:withEvent:
  • touchesMoved:withEvent:
  • touchesEnded:withEvent:

but I also want these event to be called at the subviews. How can I accomplish that?

(I have already tried with hitTest, but I only get the touchesBegan event and no touches are send with the method)

share|improve this question

1 Answer

up vote 1 down vote accepted

I have managed to solve it by overriding the - (void)sendEvent:(UIEvent*)anEvent method at my main window. I check if it is the right event with if ([[[anEvent allTouches] anyObject] phase] == UITouchPhaseBegan) (same for UITouchPhaseMoved and UITouchPhaseEnded), do what I have to do at my class and then send [super sendEvent:anEvent];

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.