如何编程刷UITableCell的能力。我已经有了一个我一直在使用UITableCell的子类。我只是处理它中的滑动,就像我的观点一样吗?
答案 0 :(得分:1)
您需要实现此方法:
tableView:editingStyleForRowAtIndexPath:
并返回UITableViewCellEditingStyleDelete
要使其工作,您还需要实现这些方法:
tableView:commitEditingStyle:forRowAtIndexPath:
tableView:canEditRowAtIndexPath:
要自定义删除按钮的文本,请参阅此主题: UITableView Swipe to delete: how to customize button and action?