reordering control in UITableView

前端 未结 5 698
青春惊慌失措
青春惊慌失措 2020-12-29 05:20

I am developing a game in which I am using a UITableView which has custom cell (UItableViewCell subclass).

In editing mode:

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-29 05:57

    You should use this method for hiding delete button.

    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
        return UITableViewCellEditingStyleNone;
    }
    

提交回复
热议问题