38

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

ここに画像の説明を入力

4

2 に答える 2

147

これを試して:

button.contentHorizontalAlignment = .left
于 2016-04-07T00:48:58.007 に答える