我有一个来自此示例的自定义滑动识别类: 如何在自定义 UITableviewCell 中检测滑动删除手势?
- (void)cellSwiped:(UIGestureRecognizer *)gestureRecognizer {
if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {
UITableViewCell *cell = (UITableViewCell *)gestureRecognizer.view;
NSIndexPath* indexPath = [self.tableView indexPathForCell:cell];
}
}
现在我想在 indexPath 中选择那一行并为其启用编辑模式,有人可以告诉我如何完成吗?