我有一个UITableViewHeaderFooterView,我在其中更改textLabel字体和背景颜色
UITableViewHeaderFooterView* header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"header"];
if(!header)
{
header = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:@"header"];
[header.textLabel setFont:[UIFont boldSystemFontOfSize:15]];
[header.contentView setBackgroundColor:[UIColor colorWithRed:213/255.0 green:213/255.0 blue:213/255.0 alpha:1]];
}
以下是iOS 7的显示方式:
以下是iOS 8的显示方式: setFont:似乎没有在这里生效,或iOS 6上的15pt字体在iOS 7上更大
以下是我删除setFont:call时iOS 8的显示方式
正如您所看到的,setFont对字体没有影响,但它在textColor上有效。
我错过了什么,或者那些是" beta bug" (我使用的是XCode6 GM种子的模拟器,我在iOS 5 beta 5的iPhone 5上遇到了同样的问题)?
编辑:iOS 8发布和XCode 6.0.1似乎无法解决问题
答案 0 :(得分:2)
[SWIFT版]在UITableView UITableViewStylePlain中遇到同样的问题,即
中的标题字体设置override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) {...}
无效。以下是我的UITableViewController
子类的代码[适用于XCode 6.4,iOS 8.4的测试],请参阅http://www.elicere.com/mobile/swift-blog-2-uitableview-section-header-color/
override func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
let header = view as? UITableViewHeaderFooterView //recast your view as a UITableViewHeaderFooterView
if (header == nil) {
return;
}
if (myHeaderFont != nil) {
header!.textLabel.font = myHeaderFont;
}
}
标题高度需要"手动"进行调整:
override func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
if (myHeaderFont == nil) {
return 20; //DEFAULT_HEADER_HEIGHT_IN_POINTS;
}
return myHeaderFont.pointSize * 2; //HEIGHT_REL_TO_FONT;
}
其余的是标准的,但在这里显示完整性:
override func viewDidLoad() {
//...
//https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableViewHeaderFooterView_class/index.html#//apple_ref/doc/uid/TP40012241
self.tableView.registerClass(UITableViewHeaderFooterView.self, forHeaderFooterViewReuseIdentifier: "HEADER_REUSE_ID")
//...
}
override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
var header = tableView.dequeueReusableHeaderFooterViewWithIdentifier("HEADER_REUSE_ID") as? UITableViewHeaderFooterView;
if (header == nil) {
header = UITableViewHeaderFooterView(reuseIdentifier: "HEADER_REUSE_ID");
}
header!.textLabel.text = myTitle;
return header!;
}
答案 1 :(得分:0)
我遇到了同样的问题,最终导致了UITableViewHeaderFooterView的子类化。
这是一个小型参考实现:只需设置header.headerLabel.text = @"myString";
。
@interface BHRSectionHeaderView : UITableViewHeaderFooterView
@property (nonatomic, strong) UILabel *headerLabel;
@end
@implementation BHRSectionHeaderView
- (UILabel *)headerLabel
{
if (!_headerLabel)
{
_headerLabel = [[UILabel alloc] initWithFrame:CGRectZero];
_headerLabel.font = [UIFont boldSystemFontOfSize:13.f];
_headerLabel.textColor = [UIColor redColor];
_headerLabel.translatesAutoresizingMaskIntoConstraints = NO;
[self addSubview:_headerLabel];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-(16)-[header]-(>=0)-|"
options:0
metrics:nil
views:@{ @"header": _headerLabel }]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-(>=0)-[header]-(>=0)-|"
options:0
metrics:nil
views:@{ @"header": _headerLabel }]];
[self addConstraint:[NSLayoutConstraint constraintWithItem:_headerLabel
attribute:NSLayoutAttributeCenterY
relatedBy:NSLayoutRelationEqual
toItem:self
attribute:NSLayoutAttributeCenterY
multiplier:1.0f
constant:0.0f]];
}
return _headerLabel;
}
@end
答案 2 :(得分:0)
您可以通过覆盖-layoutSubviews方法修改textLabel字体:
- (void)layoutSubviews
{
self.textLabel.font = [UIFont boldSystemFontOfSize:15.0f];
self.textLabel.textAlignment = NSTextAlignmentCenter;
self.textLabel.textColor = [UIColor grayColor];
[super layoutSubviews];
}
答案 3 :(得分:-1)
根据tubtub的回答,我创建了一个UITableViewHeaderFooterView子类:
@interface CompatibilityTableViewHeaderFooterView : UITableViewHeaderFooterView
@property (nonatomic,readonly) UILabel* compabilityTextLabel;
@end
@implementation CompatibilityTableViewHeaderFooterView
{
UILabel* iOS8TextLabel;
NSLayoutConstraint* iOS8TextLabelLeftMarginConstraint;
}
-(instancetype) initWithReuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithReuseIdentifier:reuseIdentifier])
{
self.contentView.backgroundColor = GRIS_213;
self.compabilityTextLabel.font = [UIFont boldSystemFontOfSize:15];
}
return self;
}
-(UILabel*) compabilityTextLabel
{
if ([UIDevice currentDevice].systemVersion.floatValue < 8.0)
{
return self.textLabel;
}
else
{
if (!iOS8TextLabel)
{
iOS8TextLabel = [[UILabel alloc] init];
iOS8TextLabel.translatesAutoresizingMaskIntoConstraints = NO;
[self addSubview:iOS8TextLabel];
iOS8TextLabelLeftMarginConstraint = [NSLayoutConstraint constraintWithItem:iOS8TextLabel attribute:NSLayoutAttributeLeading relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeLeft multiplier:1 constant:0];
[self addConstraint:iOS8TextLabelLeftMarginConstraint];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:[iOS8TextLabel]-(>=0)-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(iOS8TextLabel)]];
[self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[iOS8TextLabel]|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(iOS8TextLabel)]];
}
return iOS8TextLabel;
}
}
-(UITableView*) searchForTableView
{
UIView* currentView = self;
while (currentView)
{
currentView = currentView.superview;
if ([currentView isKindOfClass:[UITableView class]])
{
return (UITableView*)currentView;
}
}
return nil;
}
-(void) layoutSubviews
{
[super layoutSubviews];
UITableView* tableView = [self searchForTableView];
if (tableView)
{
iOS8TextLabelLeftMarginConstraint.constant = tableView.separatorInset.left;
}
}
所以基本上我现在只使用compabilityTextLabel
属性而不是textLabel
。
请注意,左侧空间约束会自动更新以匹配tableView分隔符插入。
随意评论/改进我的代码;)