Removing cell borders from a section of grouped-style UITableView

后端 未结 15 2113
南旧
南旧 2020-12-04 07:56

I have a UITableViewController initialized with the grouped style and having multiple sections. For one of these sections, I\'d like its constituent cells to be completely t

15条回答
  •  执笔经年
    2020-12-04 08:05

    I just thought I would convert my comment to @Intentss into an answer, because it maybe useful for those, using his solution.

    Using iOS6.1 with a grouped UITabelView, using ARC:

    [tableView setSeparatorColor:[UIColor clearColor]];

    Does not work

    cell.backgroundView = [[UIView alloc] initWithFrame:CGRectZero];

    Does work

提交回复
热议问题