サブクラス化しようとしていますが、何らかの理由で 3 つの問題があります。
1 つ目は、透明な背景の作成です。textLabel
2つ目はsフォントの変更です。3 つ目は、下部の境界線を作成することですdrawRect:
(緑色は単なるテスターです)。
ここにすべての私のサブクラスのコードがあります:
+ (EVSectionHeaderView *)sectionHeaderViewWithSectionHeaderViewStyle:(SectionHeaderViewStyle)sectionHeaderViewStyle title:(NSString *)title
{
EVSectionHeaderView *sectionHeaderView = [[EVSectionHeaderView alloc] init];
UIView *backgroundView = [[UIView alloc] initWithFrame:sectionHeaderView.frame];
[sectionHeaderView setBackgroundView:backgroundView];
switch (sectionHeaderViewStyle) {
case SectionHeaderViewStylePaper:
[sectionHeaderView.backgroundView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"Paper Texture"]]];
break;
default:
break;
}
[sectionHeaderView.layer setOpacity:0.1f];
[sectionHeaderView.textLabel setText:title];
[sectionHeaderView.textLabel setFont:[UIFont fontWithName:@"AvenirNextCondensed-DemiBold" size:14.0f]];
[sectionHeaderView.textLabel setTextColor:[UIColor darkGrayColor]];
NSLog(@"Section background: %@", sectionHeaderView.backgroundView);
return sectionHeaderView;
}
- (void)drawRect:(CGRect)rect
{
[super drawRect:rect];
CGContextRef context = UIGraphicsGetCurrentContext();
// Bottom border
//
CGContextSetFillColorWithColor(context, [[UIColor greenColor] colorWithAlphaComponent:0.12f].CGColor);
CGContextFillRect(context, CGRectMake(0.0f, CGRectGetHeight(self.contentView.frame) - 1.0f, CGRectGetWidth(self.contentView.frame), 1.0f));
}
正しい画像の背景色とタイトルで背景ビューを正常に記録します。また、textLabel の色も変わります。しかし、他の2つはそうではありません。
誰かが理由を知っていますか?
ありがとう