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 so开发者_开发知识库meone suggest what may work.
aButton.titleLabel.textAlignment = UITextAlignmentLeft;
You have to set the label alignment, not the text alignment.
aButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
精彩评论