如何在UITableView中为某些行更改删除单元格按钮的样式

时间:2014-11-12 09:45:10

标签: ios swift

我想要不用可编辑的行更改背景颜色和标签以滑动删除按钮 怎么做?

我不想使用func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool来禁用刷卡删除,因为我的应用中的用户不太清楚

1 个答案:

答案 0 :(得分:0)

写下面的tableview方法

- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
        // Detemine if it's in editing mode
        if (self.tableView.editing) {
            return UITableViewCellEditingStyleDelete;
        }
        return UITableViewCellEditingStyleNone;
    }