Заголовок моего TableView плохо отображается в iOS13. Какой бы цвет я ни поставил, теперь он всегда отображается светло-серым...
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{ //Section color & style
UITableViewHeaderFooterView *v = (UITableViewHeaderFooterView *)view;
v.backgroundView.alpha = 1;
v.textLabel.textColor = sectionColor;
v.textLabel.font = sectionFont;
v.textLabel.numberOfLines = 1;
v.textLabel.minimumScaleFactor = 0.5;
v.textLabel.adjustsFontSizeToFitWidth = YES;
v.backgroundView.backgroundColor = [UIColor blueColor];
}
iOS13: а>
Странно, потому что, когда я шаг за шагом ставлю стоп в отладчике, он показывает мне хорошее изображение в iOS13, но не в приложении: