UIButton标题对齐方式

UIButton标题的对齐方式默认为居中,在自定义为左对齐时发现:

button.titleLabel.textAlignment=UITextAlignmentLeft;方法并没有生效

正确的做法应该是:

[button setContentHorizontalAlignment:UIControlContentHorizontalAlignmentLeft];

你可能感兴趣的:(ios,ios,ios,UIButton标题对齐)