嗨,我正在使用具有更大行高的表格视图,我需要在滑动单元格时使用两个按钮编辑和删除。我使用以下代码获得了这两个按钮:-
-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewRowAction *button = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"Delete" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath)
{
// Logic
}];
button.backgroundColor = [UIColor redColor]; //arbitrary color
UITableViewRowAction *button2 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@" Edit " handler:^(UITableViewRowAction *action, NSIndexPath *indexPath)
{
// Logic
}];
button2.backgroundColor = [UIColor lightGrayColor];
return @[button, button2];
}
这两个按钮出现在两列中,我需要它们在两行的单列中。我已经看到几乎所有表格单元格都具有这种结构(多列)。请帮我