gpt4 book ai didi

ios - objc - UITableView 标题太宽.. 我有什么选择?

转载 作者:行者123 更新时间:2023-12-01 18:11:21 25 4
gpt4 key购买 nike

我有一个 UITableView我想将 tableView 标题设置为宽标签。

我正在尝试做类似的事情:
《每日时刻表-长站名》

理想情况下,这意味着一个标题和一个子标题。由于没有字幕字段,是否有显示宽标签?

请注意,我不是在询问 UITableView Section Headers .

这是关于 TableViewController title.
谢谢

最佳答案

我认为您指的是 UINavigationController 显示的标题.在这种情况下,您可以使用自定义标题 View ,其中您可以在文本标签中有两行。这是我目前正在使用的示例。

// Title label is the view we will assign to the titleView property
UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 140, 50)];
titleLabel.numberOfLines = 2;
titleLabel.text = @"Daily Schedule - Long Station Name";
titleLabel.textColor = [UIColor whiteColor];
titleLabel.font = [UIFont fontWithName:@"Montserrat-Regular" size:22];
titleLabel.adjustsFontSizeToFitWidth = YES;
titleLabel.minimumScaleFactor = 0.8;
titleLabel.textAlignment = NSTextAlignmentCenter;
self.navigationItem.titleView = titleLabel;

编辑或删除属性以获得您想要的标题效果。

关于ios - objc - UITableView 标题太宽.. 我有什么选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30559574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com