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)
_
これを試して:
button.contentHorizontalAlignment = .Left
Swift 3またはSwift 4に更新
yourButton.contentHorizontalAlignment = .left