UITableViewCell 文本的字体和颜色是什么?

发布于 2024-12-04 22:37:09 字数 177 浏览 1 评论 0原文

我想复制苹果提供的 UITableViewCellStyleValue1 ,我只是无法弄清楚右侧单元格中文本的字体和大小。具体来说,下面数字的字体和颜色是 28 1 6843。

在此处输入图像描述

I want to replicate the UITableViewCellStyleValue1 provided by apple, I just can't figure out the font and size of the text in the cells in the right. Specifically the font and color of numbers below is, 28 1 6843.

enter image description here

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

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

发布评论

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

评论(3

扛刀软妹 2024-12-11 22:37:09

使用带有标签的默认字体
大小= [UIFont boldSystemFontOfSize:16];

您要查找的数字的颜色为

label.textColor = [UIColor colorWithRed:81.0/255.0 green:102.0/255.0 blue:145.0/255.0 alpha:1.0];

Use the default font with the label with the
size = [UIFont boldSystemFontOfSize:16];

and the color of the number you are looking for is

label.textColor = [UIColor colorWithRed:81.0/255.0 green:102.0/255.0 blue:145.0/255.0 alpha:1.0];

初见终念 2024-12-11 22:37:09

UITableViewCell 右侧的区域称为 detailTextLabel。您只需创建一个具有所需样式的 UITableViewCell 并从中读取 UIFontUIColor 值即可。

UITableViewCell* cell = [[[UITableViewCell alloc] initWithStyle: UITableViewCellStyleValue1 reuseIdentifier: @"Example"] autorelease];

UIFont* rightFont = cell.detailTextLabel.font;
UIColor* rightColor = cell.detailTextLabel.textColor;

The area on the right of a UITableViewCell is called the detailTextLabel. You can just create a UITableViewCell with the style you want and read the UIFont and UIColor values from it.

UITableViewCell* cell = [[[UITableViewCell alloc] initWithStyle: UITableViewCellStyleValue1 reuseIdentifier: @"Example"] autorelease];

UIFont* rightFont = cell.detailTextLabel.font;
UIColor* rightColor = cell.detailTextLabel.textColor;
赏烟花じ飞满天 2024-12-11 22:37:09

ITableViewCellStyleValue1
单元格左侧带有标签、左对齐且黑色文本的单元格样式;右侧是一个带有较小蓝色文本且右对齐的标签。设置应用程序使用这种样式的单元格。

ITableViewCellStyleValue1
A style for a cell with a label on the left side of the cell with left-aligned and black text; on the right side is a label that has smaller blue text and is right-aligned. The Settings application uses cells in this style.

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