我要重新排序UITableView
行,而不显示默认的红色减号按钮,因为我需要显示自定义图像,而不需要从UITableView
中删除单元格。即使表未处于编辑模式,是否还有重新排序行的方法?
答案 0 :(得分:8)
您需要添加此委托方法以不显示删除按钮
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
return UITableViewCellEditingStyleNone;
}
答案 1 :(得分:1)