ios UITableViewCell 左滑删除时,改变删除按钮背景颜色

-(NSArray<UITableViewRowAction*>*)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath

{


    UITableViewRowAction *rowAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {

// 点击删除时 do something

    }];


//    rowActionSec.backgroundColor = [UIColor colorWithHexString:@"f38202"];

    rowAction.backgroundColor = [UIColor purpleColor];


    UITableViewRowAction *rowaction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"置顶" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {

        // 点击置顶时 do something

    }];

    rowaction.backgroundColor = [UIColor grayColor];

    NSArray *arr = @[rowAction,rowaction];

    return arr;

}


效果图:

ios UITableViewCell 左滑删除时,改变删除按钮背景颜色_第1张图片

你可能感兴趣的:(iOS,开发)