iOS 11 TableView Swipe Action

Hello,


I've implemented the new swipe action delegate method but whenever I swipe a cell, the bottom separator moves together with the cell content. I would like

the separator to stay constant while only the content moves, as in the new Mail App. Does anyone know how to prevent the separator from moving when swiping?

Replies

Would love to know how to do this too

I suggest filing a bugreport. There's no way to affect this behaviour.

Also, there is no way to have an image plus a title for a swipe action, once I set an image, the title would not display. The Mail App has it all.

In addition, I would like to know how to unswipe/close a cell programmatically if the cell is swiped/open, since editing = false for the cell is to no effect.

What about

tableView.setEditing(false)
?

Good idea, that works, though the animation is different from the one that is applied after tapping a tableview with an open swipe action. Thank you.