when you set myTable.editing=YES; , it calls the table and delegate data presentation method.
therefore, if you have data to display in the table, the above line of code calls the delgate method
so you can code here
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { if(myTable.editing==YES) { return 70;
source share