I have a subclass of UIView
on top of a UITableView
. I am using the UITableView
to display some data and, at the same time, I would like t
UITableView relays unhandled touch events to UIView. (Google "responder chain") UITableView Documentation
So, you can handle your touch events in UIView only. So. In your UIView
touchesstart - do initialization stuff
touchesmove - draw tail on UIView (Use timers/delayedresponse to desable points so that it would look like a trail)
touchesend - do remaining stuff
Hope this helps.