Does anyone have any sample code for detecting touches on a dynamically created UIView? I have found some references to touchesBegan but cannot figure out how to implement it...
|
A very general way to get touches is to override these methods in a custom UIView subclass:
The official docs for these methods is under Responding to Touch Events in the UIResponder class docs (UIView inherits those methods since it's a subclass of UIResponder). Longer and more introductory docs can be found in the Event Handling Guide for iOS. If you just want to detect a tap (touch-down, then touch-up within your view), it's easiest to add a If you're looking for more advanced interactions, it's also good to know about the |
||||
|
|
|
Crate touch event with UIAnimation On UIView , you can manage touches on UIView anywhere . Following Code : here self.finalScore is a UIView , and cup is a UIImageView . I handle the touch event on UIImageView , it present inside the UIView .
Like UITapGestureRecognizer is another way of handle the touch events on UIView ....
|
||||
|
|
Create your own custom
|
||||
|
|