views:

122

answers:

1

Quick question about swipe to delete feature in UITableView - is there a way to just go ahead and delete the row without showing the Delete button and waiting for user's confirmation?

A: 

You can do it by your own code.

Take one button and on click of that delete the selected row from UiTableView

Reena
I'd like deleting to be accessed using the swipe gesture, not a button. Kind of like it does by default, but without the confirmation 'Delete' button that usually shows up after swiping. Was wondering if there is a way to do this without reimplementing all of the gestures in UITableView.
SaltyNuts
I don't have idea for that but i think you can do it using touch events. But i have never try that.
Reena