我想要复制apple提供的UITableViewCellStyleValue1
,我无法弄清楚右边单元格中文本的字体和大小。具体来说,下面数字的字体和颜色是28 1 6843。
答案 0 :(得分:14)
使用带有标签的默认字体
size = [UIFont boldSystemFontOfSize:16]
;
并且您要查找的数字的颜色是
label.textColor = [UIColor colorWithRed:81.0/255.0 green:102.0/255.0 blue:145.0/255.0 alpha:1.0];
答案 1 :(得分:2)
UITableViewCell
右侧的区域称为detailTextLabel
。您可以使用所需的样式创建UITableViewCell
,并从中读取UIFont
和UIColor
值。
UITableViewCell* cell = [[[UITableViewCell alloc] initWithStyle: UITableViewCellStyleValue1 reuseIdentifier: @"Example"] autorelease];
UIFont* rightFont = cell.detailTextLabel.font;
UIColor* rightColor = cell.detailTextLabel.textColor;
答案 2 :(得分:-1)
<强> ITableViewCellStyleValue1 单元格样式,单元格左侧带有标签,左对齐和黑色文本;在右侧是一个标签,蓝色文字较小,右对齐。 “设置”应用程序使用此样式的单元格。