Appearance of table cells when deleting

后端 未结 2 350
滥情空心
滥情空心 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 11:51

    it looks like that all apple is doing is making the background black for the delete button content area. i would try doing something like that first.

    0 讨论(0)
  • 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;
    }
    
    0 讨论(0)
提交回复
热议问题