使用UITableViewCellStyleValue2
时,哪个标签是detailTextLabel
,哪个是textLabel
?小蓝文或较大的黑文?
我希望我的textLabel(黑色文字)能够正确对齐,所以我试过这个,但没有成功。
cell.textLabel.textAlignment = UITextAlignmentRight;
cell.detailTextLabel.textAlignment = UITextAlignmentRight; //tried this just in case, but no luck.
为什么我的细胞不能正确对齐?我正在使用UITableViewCellStyleValue2
答案 0 :(得分:2)
textLabel
是较大的蓝色文字,detailTextLabel
是较小的黑色文字。 UITableViewCellStyleValue2
设置textLabel
左对齐和detailTextLabel
右对齐。
如果您希望对样式进行细粒度控制,可以访问contentView并创建要添加到其中的子视图。