UIButton标题对齐方式

来源:互联网 发布:手机股票预警软件 编辑:程序博客网 时间:2024/04/28 23:56

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

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

正确的做法应该是:

[buttonsetContentHorizontalAlignment:UIControlContentHorizontalAlignmentLeft];