我在IB中设置了UITableView的行分隔符样式和颜色,但是,当表加载时,分隔符行不可见。
我正在使用具有自定义超类CustomTableView
的UITableView - 这是UITableView
的子类。在此表中,我还使用了自定义UITableViewCell
。
我能想到的唯一问题是如果我没有在我的awakeFromNib
方法中调用'超级'实现 - 但我这样做是因为它不可能是那样。
有什么想法吗?
使用代码进行编辑
我的表格单元格如下 - CustomDefaultCell.h> CustomPlainCell.h>的UITableViewCell
CustomDefaultCell.m
- (void)awakeFromNib
{
[super awakeFromNib];
// Called when loaded from a nib.
// Override all default cell behaviour here.
//
}
CustomPlainCell.m
- (void)awakeFromNib
{
[super awakeFromNib];
// Called when loaded from a nib.
// Override all default cell behaviour here.
//
// Normal background view
self.backgroundView = [[UIView alloc] initWithFrame:self.frame];
self.backgroundView.backgroundColor = [UIColor whiteColor];
// Selected background view
self.selectedBackgroundView = [[UIView alloc] init];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
//
// Background gradient
CAGradientLayer *selectedViewGradientLayer = [CAGradientLayer layer];
selectedViewGradientLayer.frame = CGRectMake(1.0f, 0.0f, 320.0f, CGRectGetHeight(self.frame) + 1.0f);
selectedViewGradientLayer.colors = @[(id)[UIColor colorWithHue:0.0f saturation:0.0f brightness:0.57f alpha:1.0f].CGColor, (id)[UIColor grayColor].CGColor];
[self.selectedBackgroundView.layer addSublayer:selectedViewGradientLayer];
}
答案 0 :(得分:2)
遇到同样的问题并且认为在重写单元原型类中的方法时我没有调用[super layoutSubviews];
。
答案 1 :(得分:0)
最终我决定使用委托方法tableView:willDisplayCell:forRowAtIndexPath:
,如果单元格是'CustomPlainCell'的子类,请添加一个带有背景颜色的1pt高UIView
。