我想要不用可编辑的行更改背景颜色和标签以滑动删除按钮 怎么做?
我不想使用func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool
来禁用刷卡删除,因为我的应用中的用户不太清楚。
答案 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;
}