1

如何在我的表格视图单元格中添加滑动手势?我在表格视图中使用自定义单元格,我必须从表格中删除该行,所以请指导我如何在表格视图中使用此滑动手势?

4

2 回答 2

1

与任何其他视图完全一样。将此代码插入自定义单元格的 init 或 UITableViewDataSource 委托的 cellForRowAtIndexPath 方法中。

UISwipeGestureRecognizer *recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:myTableViewController action:@selector(removeCell:)];
recognizer.direction = UISwipeGestureRecognizerDirectionLeft;
recognizer.numberOfTouchesRequired = 1;
[self addGestureRecognizer:recognizer];
[recognizer release];
于 2011-09-14T13:19:30.933 回答
0

您必须实现两个委托方法。

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
     return YES;
}

以及您必须执行编辑或删除代码的其他方法。

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleDelete)  {
        //write delete code.
        [arry removeObjectAtIndex:indexPath.row];

        [Table reloadData];
    }
}
于 2011-09-14T13:31:26.840 回答