I would like to be able to present actions on the row of a TableView
(as described in the topic "Swipe to Delete and the More button") from its left and when the table enters edit mode, and not based on a swipe gesture.
The question "In iOS 8, how to add Row Action Buttons to the left side of a UITableViewCell" discusses this topic and presents a relevant picture, however this action is initiated by a swipe, where I would like it to be initiated when entering edit mode by tapping an Edit
button.
When binding the edit mode to an Edit
button in the navigation bar (on the left) with
self.navigationItem.leftBarButtonItem = self.editButtonItem()
then tapping the Edit
button will by default shift the row and present a rounded delete
button on the left:
Is there a simple way to replace this rounded button with square buttons such as Delete
and More
(swiping the row should not trigger anyting) ?
Thank your very much.