XMG tableView左滑动多操作

1.block是把操作封装起来等用到的时候再去调用


2.

- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath

{

    

    UITableViewRowAction *action = [UITableViewRowActionrowActionWithStyle:UITableViewRowActionStyleDefaulttitle:@"增加"handler:^(UITableViewRowAction *action,NSIndexPath *indexPath) {

        // 点击增加的时候调用

        NSLog(@"增加");

        

    }];

    action.backgroundColor = [UIColorgreenColor];

    UITableViewRowAction *action1 = [UITableViewRowActionrowActionWithStyle:UITableViewRowActionStyleDefaulttitle:@"删除"handler:^(UITableViewRowAction *action,NSIndexPath *indexPath) {

        // 点击增加的时候调用

        NSLog(@"删除");

        

    }];


    

    return@[action,action1];

}


XMG tableView左滑动多操作_第1张图片

你可能感兴趣的:(XMG tableView左滑动多操作)