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
2010-07-13 04:30:24
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
2010-07-13 10:53:19
I don't have idea for that but i think you can do it using touch events. But i have never try that.
Reena
2010-07-14 04:48:16