在 xcode 中添加 ui 按钮时,我使用以下代码设置标题标签的文本颜色、对齐方式和字体大小。选择了字体大小,但没有选择文本颜色和对齐方式,为什么?谢谢。
toButton.titleLabel.textColor = [UIColor redColor];
toButton.titleLabel.textAlignment = UITextAlignmentRight;
toButton.titleLabel.font = [UIFont boldSystemFontOfSize:FONT_SIZE];
[toButton setTitle:fromButton.titleLabel.text forState:UIControlStateNormal];