UIButton
aのテキストの左揃えに問題があります。私もそれを変更しようとしました.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)