I have UIView
that can recognize swipe gestures. On swipe, I would like it to behave like a UITableViewCell
and show a set of actions (like “Save”, for example).
Any ideas on the best way to achieve that?
My understanding is that I need to implement some sort of animation that makes the view slide to the left and reveal another view that holds the action buttons.
Thanks for all the suggestions and/or pointers in advance.