UITableViewCell 文本的字体和颜色是什么?
我想复制苹果提供的 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用带有标签的默认字体
大小=
[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];
UITableViewCell
右侧的区域称为detailTextLabel
。您只需创建一个具有所需样式的UITableViewCell
并从中读取UIFont
和UIColor
值即可。The area on the right of a
UITableViewCell
is called thedetailTextLabel
. You can just create aUITableViewCell
with the style you want and read theUIFont
andUIColor
values from it.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.