我正在使用 UITableView Grouped Style 开发一个应用程序,我想隐藏一些单元格 bottomSeparator 但我不知道如何。
这是我想要的结果: 我想要的结果
我试过这个:
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
[self.tableView setSeparatorColor:[UIColor clearColor]];
和这个 :
UIImageView *line = [[UIImageView alloc] initWithFrame:CGRectMake(12, HEIGHT_ROW_HEADER, 320-(12*2), 1)];
line.backgroundColor = [UIColor blackColor];
[cell addSubview:line];
但我在 UItableView 周围没有边框
我有这样的事情: 结果我有
有人可以帮助我吗?
十分感谢