Is there a way to remove the separator line from a UITableView?

后端 未结 9 2100
深忆病人
深忆病人 2020-11-29 01:00

I\'m looking for a way to completely remove the separator line in a UITableView when in the plain mode. This is done automatically in grouped, but this also changes the dime

9条回答
  •  生来不讨喜
    2020-11-29 01:24

    There is bug a iOS 9 beta 4: the separator line appears between UITableViewCells even if you set separatorStyle to UITableViewCellSeparatorStyleNone from the storyboard. To get around this, you have to set it from code, because as of now there is a bug from storyboard. Hope they will fix it in future beta.

    Here's the code to set it:

    [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
    

提交回复
热议问题