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 table with custom cells, which has subclass UITableViewCells and for touches animation I use UITouch (code based on this tutorial http://gregprice.co.uk/blog/?p=280) Index of cell under touch I get with using didSelectRowAtIndexPath. I think that is good idea use UISwipeGestureRecognizer to define swipe direction, but UIGestureRecognizer interrupt animation of cell sliding. It's doing because UIGestureRecognizer methods activated before than touchesEnded (UITouch) method finished.

Is it possible to call UISwipeGestureRecognizer after touchesEnded, or after touch release?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.