ABMenuTableViewCell
ABMenuTableViewCell copied to clipboard
TableViewCell Long press issue
Hi Alex,
I want you to thank you for this awesome library.
I want your help in solving one issue which I have encountered recently. Long Pressing on Tableview cell disables the swipe to delete option from tableview cell.
It would be really great if you can help me in solving this issue.
Thanks
Hello Milap,
Really glad it's useful to you.
Regarding long pressing issue are you using a UILongPressGestureRecognizer? If that's the case I think you need to implement - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer from UIGestureRecognizerDelegate protocol for your UILongPressGestureRecognizer, since a UIPanGestureRecognizer is used for tracking swipes inside the cell.
Hope this solves you issue.