I implement gestures in my customtableviewcell control, and therefore I want to implement touchsBegan. I can implement swipes, but, unfortunately, because touchhesBegan is processed in customcell, I do not receive the didSelectRowAtIndexPath message in tablecontroller. If the touchhesBegan method is disabled, it works.
How should this be handled? I want the touch event to trigger the responder chain after touchsBegan is processed. How can i do this?
Thanks.
source
share