web-dev-qa-db-ja.com

UIButtonタイトルの左揃えの問題(iOS / Swift)

UIButtonのテキストの左揃えに問題があります。また、_.Right_に変更しようとしましたが、それでも中央に留まります。 _aButton.titleLabel?.textAlignment = .Left_の代わりにaButton.imageEdgeInsets = UIEdgeInsets(top: 0, left: 20, bottom: 0, right: 0)も試しましたが、それでも何も変わりません。 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)
_

enter image description here

29
stumped

これを試して:

        button.contentHorizontalAlignment = .Left
97
OhNo

Swift 3またはSwift 4に更新

yourButton.contentHorizontalAlignment = .left
15
iAj