2

How does one program the ability to swipe a UITableCell. I already have a subclass that I've been working with of UITableCell. Do I just handle swipes in it, like I would a view?

Oscar
  • 1,025
  • 2
  • 15
  • 25

1 Answers1

1

You will need to implement this method:

tableView:editingStyleForRowAtIndexPath:

and return UITableViewCellEditingStyleDelete

To make it work you'll also want to implement these methods:

tableView:commitEditingStyle:forRowAtIndexPath:
tableView:canEditRowAtIndexPath:

To customize the text of the delete button see this thread: UITableView Swipe to delete: how to customize button and action?

Community
  • 1
  • 1
theChrisKent
  • 15,029
  • 3
  • 61
  • 62