我试图将此字体设置为文本标签。字体设置正确,但隐藏(请参见屏幕截图)。
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
// Text Color
UITableViewHeaderFooterView *header = (UITableViewHeaderFooterView *)view;
header.textLabel.font = [UIFont fontWithName:@"Damascus" size:13];
}
- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
return @"faq";
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
NSLog(@"Coming here");
return 50;
}
最佳答案
[yourLabel setFont:[UIFont fontWithName: @"Damascus" size: 10.0f]];
[yourSuperView addSubview:yourLabel];
关于ios - 如何更改UITableViewHeaderFooterView的textLabel的高度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49649781/