Reputation: 11804
I am trying to left justify text on a UIButton. It is middle justified by default. The following doesnt seem to work. Can someone suggest what may work.
aButton.titleLabel.textAlignment = UITextAlignmentLeft;
Upvotes: 2
Views: 637
Reputation: 20026
You have to set the label alignment, not the text alignment.
aButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
Upvotes: 4