(iPhone)如何更改tableview中一行的字体大小

发布于 2024-10-03 06:30:46 字数 71 浏览 1 评论 0原文

您好,我现在正在努力更改行的字体大小。 Inspector里好像没有这样的设置。而且我不知道要重写哪个委托方法。谢谢你的帮助:)

Hi I am now working on changing font size of a row. There seem to be no such settings in inspector. And I dont know which delegate method to override. Thx for your help :)

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

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

发布评论

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

评论(3

撩动你心 2024-10-10 06:30:46

在 cellForRowAtIndexPath 方法中尝试类似的操作:

//Configure the cell...
cell.textLabel.font = [UIFont systemFontOfSize:14]; //Change this value to adjust size
cell.textLabel.numberOfLines = 2; //Change this value to show more or less lines.
cell.textLabel.text = @"This is my text";

Try something like this in your cellForRowAtIndexPath method:

//Configure the cell...
cell.textLabel.font = [UIFont systemFontOfSize:14]; //Change this value to adjust size
cell.textLabel.numberOfLines = 2; //Change this value to show more or less lines.
cell.textLabel.text = @"This is my text";
黑色毁心梦 2024-10-10 06:30:46
//font size
cell.textLabel.font = [UIFont systemFontOfSize:14];
//font size
cell.textLabel.font = [UIFont systemFontOfSize:14];
两个我 2024-10-10 06:30:46

我不确定这是否回答了您的问题,但是在您的 cellForRowAtIndexPath 委托中,您可以将 cell.textLabelfont 设置为 UIFont

I am not sure if this answers your question, but inside your cellForRowAtIndexPath delegate you can set cell.textLabelfont to a UIFont.

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