美文网首页
UITableView滑动删除时设置显示多个按钮

UITableView滑动删除时设置显示多个按钮

作者: coding_Zhang | 来源:发表于2016-02-16 14:57 被阅读748次

tableView:editActionsForRowAtIndexPath: // 设置滑动删除时显示多个按钮

UITableViewRowAction // 通过此类创建按钮

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

    // 添加一个删除按钮
    UITableViewRowAction *deleteRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        
        NSLog(@"点击了删除");
    }];
    
    // 添加一个更多按钮
    UITableViewRowAction *moreRowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"更多" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
        
        NSLog(@"点击了更多");        
        [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationMiddle];
    }];

    moreRowAction.backgroundColor = [UIColor orangeColor];

    return @[deleteRowAction,moreRowAction];
}

相关文章

网友评论

      本文标题:UITableView滑动删除时设置显示多个按钮

      本文链接:https://www.haomeiwen.com/subject/jgwpkttx.html