我有一个带有自定义UITableViewCell类的分组UITableView,我正在为每个单元格添加一个自定义背景图像。但是,当我这样做时,单元格的分隔符不可见。 如果只是将表格样式切换为Plain而不是Grouped,则会显示分隔符。
我需要分组表 - 如何让分隔符显示?
这是我的代码:
@interface MyCustomTableViewCell : UITableViewCell
@end
@implementation MyCustomTableViewCell
// because I'm loading the cell from a xib file
- (id)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self)
{
// Create a background image view.
self.backgroundView = [[UIImageView alloc] init];
}
return self;
}
// MyViewController
- (UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//
// standard cell dequeue + create cell code here
//
//
// Configure the cell background now
//
UIImage *backgroundImage = [UIImage imageNamed:@"odd_row.png"];
if (indexPath.row % 2 == 0)
{
backgroundImage = [UIImage imageNamed:@"even_row.png"];
}
UIImageView *backgroundView = (UIImageView *)cell.backgroundView;
backgroundView.image = backgroundImage;
}
答案 0 :(得分:1)
当您将subView提供给单元格时,它会自动隐藏分隔符。因此,请尝试将分隔线添加到图像本身。所以它会给你分隔符。
一切顺利。