I've looked around and tried everything I can think of sort of subclassing TableView, but I think I'm missing something. I have a TableView with entries that I can swipe left and right on, and everything works fine. However, if:
1) I start (vertically) scrolling a little bit, and then swipe, the TableView
's superclass, ScrollView
, seems to block the swipe from my TableViewCell
.
2) I stop scrolling, but the animation hasn't fully stopped, the swipe is still blocked from the TableViewCell
.
How can I allow my swipe to get passed through to my TableViewCell
, regardless of the vertical scroll?