Amarsh
Amarsh

Reputation: 11804

uibutton text justify

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

Answers (1)

orkoden
orkoden

Reputation: 20026

You have to set the label alignment, not the text alignment.

aButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;

Upvotes: 4

Related Questions