Como posso alterar a cor do título UIButton?

189

Eu crio um botão programaticamente ..........

button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self action:@selector(aMethod:)
forControlEvents:UIControlEventTouchDown];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button];

como posso mudar a cor do título?

Olá Mundo
fonte

Respostas:

522

Você pode usar -[UIButton setTitleColor:forState:]para fazer isso.

Exemplo:

Objetivo-C

[buttonName setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

Swift 2

buttonName.setTitleColor(UIColor.blackColor(), forState: .Normal)

Swift 3

buttonName.setTitleColor(UIColor.white, for: .normal)

Graças a richardchildan

Ben Gottlieb
fonte
38
Por exemplo [buttonName setTitleColor: [UIColor blackColor] paraState: UIControlStateNormal];
Robert Childan 11/10/10
3
Eu não posso acreditar [UIButton setTitleColor: forState:] obras, mas btn.titleColor = [UIColor x] não ..
Legnus
@Lengus eu não vejo como você pode acessar btn.titleColor, há apenas btn setTitleColordisponíveis
Alex Cio
1
Resposta soberba. É ridículo como você deve definir o estado apenas para mudar a cor ... :(
Supertecnoboff
Que tal com RGB?
Umit Kaya
23

Você criou o UIButtoné aditado o ViewController, O seguinte método de instância para a mudança UIFont, tintColore TextColordoUIButton

Objetivo-C

 buttonName.titleLabel.font = [UIFont fontWithName:@"LuzSans-Book" size:15];
 buttonName.tintColor = [UIColor purpleColor];
 [buttonName setTitleColor:[UIColor purpleColor] forState:UIControlStateNormal];

Rápido

buttonName.titleLabel.font = UIFont(name: "LuzSans-Book", size: 15)
buttonName.tintColor = UIColor.purpleColor()
buttonName.setTitleColor(UIColor.purpleColor(), forState: .Normal)

Swift3

buttonName.titleLabel?.font = UIFont(name: "LuzSans-Book", size: 15)
buttonName.tintColor = UIColor.purple
buttonName.setTitleColor(UIColor.purple, for: .normal)
Anbu.Karthik
fonte
3
Por favor, não publique simplesmente o código. Dê alguma explicação, informação ou uso sobre o seu código. Por exemplo, veja esta resposta .
Azik Abdullah
3

Solução no Swift 3 :

button.setTitleColor(UIColor.red, for: .normal)

Isso definirá a cor do título do botão.

Rupom
fonte
1

Com o Swift 5, UIButtontem um setTitleColor(_:for:)método. setTitleColor(_:for:)tem a seguinte declaração:

Define a cor do título a ser usada no estado especificado.

func setTitleColor(_ color: UIColor?, for state: UIControlState)

O seguinte código de exemplo do Playground mostra como criar um UIbuttonem a UIViewControllere alterar a cor do título usando setTitleColor(_:for:):

import UIKit
import PlaygroundSupport

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        view.backgroundColor = UIColor.white

        // Create button
        let button = UIButton(type: UIButton.ButtonType.system)

        // Set button's attributes
        button.setTitle("Print 0", for: UIControl.State.normal)
        button.setTitleColor(UIColor.orange, for: UIControl.State.normal)

        // Set button's frame
        button.frame.origin = CGPoint(x: 100, y: 100)
        button.sizeToFit()

        // Add action to button
        button.addTarget(self, action: #selector(printZero(_:)), for: UIControl.Event.touchUpInside)

        // Add button to subView
        view.addSubview(button)
    }

    @objc func printZero(_ sender: UIButton) {
        print("0")
    }

}

let controller = ViewController()
PlaygroundPage.current.liveView = controller
Imanou Petit
fonte
0

Se você estiver usando o Swift, isso fará o mesmo:

buttonName.setTitleColor(UIColor.blackColor(), forState: .Normal)

Espero que ajude!

fagiani
fonte