我想为 uitableviewrowaction 按钮设置顶部和底部约束
这是我的代码
- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewRowAction *deleteAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"Delete" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath){
}];
deleteAction.backgroundColor = [UIColor redColor];
return @[deleteAction];
}
像这样我添加了删除按钮。在tableviewCell
我添加了一个UIView
它具有顶部和底部约束。我希望删除按钮与我在UITableviewCell
.