我可以减小 iphone tableview header 的字体大小吗

发布于 2024-08-10 17:42:29 字数 97 浏览 4 评论 0原文

我需要减小表视图标题的字体大小。我的字符串值有点长,不适合标题。所以计划缩小尺寸。任何人都知道如何减小大小,以便我可以将字符串添加到表视图标题中。

提前致谢, 世宾

I need to reduce the font size of the table view header. My string value is a little bit longer and it doesnot fit in to the header. so planning to reduce the size. Any one knows how to reduce the size, so that i can add the string to my table view header.

Thanks in advance,
Shibin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鯉魚旗 2024-08-17 17:42:29

您当前如何在表视图标题中设置字符串?

我想您正在将表格的标题视图设置为 UILabel 对象:

UILabel *headerLabel = [[[UILabel alloc] initWithFrame: CGRectMake(0, 0, 320, 50)] autorelease];
headerLabel.font = [UIFont systemFontOfSize: 14];
headerLabel.text = @"Nice and Long Table View Header Label String";
tableView.tableHeaderView = headerLabel;

您可以像上面那样设置标签的字体吗?

How do you currently set the string in your table view's header?

I'd imagine you are setting your table's header view to a UILabel object:

UILabel *headerLabel = [[[UILabel alloc] initWithFrame: CGRectMake(0, 0, 320, 50)] autorelease];
headerLabel.font = [UIFont systemFontOfSize: 14];
headerLabel.text = @"Nice and Long Table View Header Label String";
tableView.tableHeaderView = headerLabel;

Can you just set the label's font as above?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文