Appearance of table cells when deleting

后端 未结 2 349
滥情空心
滥情空心 2021-01-22 11:26

I\'m trying to make a table view with an appearance much like the default Weather application provided by Apple. However I\'m struggling a bit to make the table cells look corre

2条回答
  •  有刺的猬
    2021-01-22 12:09

    It turned out that somebody else had already answered this in a slightly different question:

    - (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath
    {
        return NO;
    }
    

提交回复
热议问题