我遇到问题左对齐UIButton
的文字。我也尝试将其更改为.Right
,但它仍然保持居中。我也尝试了aButton.imageEdgeInsets = UIEdgeInsets(top: 0, left: 20, bottom: 0, right: 0)
而不是aButton.titleLabel?.textAlignment = .Left
,但这也没有改变任何内容。是否有另一种方法可以以编程方式更改UIButton
标题的对齐方式?
allButtonViews = UIView(frame: CGRectMake(0, 44, 100, 100))
allButtonViews.backgroundColor = .redColor()
let campusButton = UIButton(type: UIButtonType.System) as UIButton
aButton.frame = CGRectMake(0, 0, 300, 70)
aButton.setTitle("A", forState: .Normal)
aButton.titleLabel?.textColor = .blueColor()
aButton.titleLabel?.textAlignment = .Left
aButton.backgroundColor = .whiteColor()
sortView.addSubview(aButton)
view.addSubview(allButtonViews)
答案 0 :(得分:93)
试试这个:
button.contentHorizontalAlignment = .Left
答案 1 :(得分:12)
针对Swift 3或Swift 4进行了更新
yourButton.contentHorizontalAlignment = .left
答案 2 :(得分:4)
Swift 4 ;
locationButton.contentHorizontalAlignment = .left