¿Cómo puedo cambiar el color del título de UIButton?

189

Creo un botón mediante programación ..........

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];

¿Cómo puedo cambiar el color del título?

Hola Mundo
fuente

Respuestas:

522

Puedes usar -[UIButton setTitleColor:forState:]para hacer esto.

Ejemplo:

C objetivo

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

Swift 2

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

Swift 3

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

Gracias a richardchildan

Ben Gottlieb
fuente
38
Por ejemplo [buttonName setTitleColor: [UIColor blackColor] forState: UIControlStateNormal];
Robert Childan
3
No puedo creer que [UIButton setTitleColor: forState:] funcione pero btn.titleColor = [UIColor x] no ...
Legnus
@Lengus No veo cómo puedes acceder btn.titleColor, solo está btn setTitleColordisponible
Alex Cio
1
Excelente respuesta. Sin embargo, es ridículo cómo tienes que establecer el estado solo para cambiar el color ... :(
Supertecnoboff
¿Qué tal con RGB?
Umit Kaya
23

Usted creó el, UIButtonse agrega ViewController, El siguiente método de instancia para cambiar UIFont, tintColory TextColordelUIButton

C objetivo

 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
fuente
3
Por favor, no publique simplemente el código. Dé alguna explicación o información o uso sobre su código. Por ejemplo, vea esta respuesta .
Azik Abdullah
3

Solución en Swift 3 :

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

Esto establecerá el color del título del botón.

Rupom
fuente
1

Con Swift 5, UIButtontiene un setTitleColor(_:for:)método. setTitleColor(_:for:)tiene la siguiente declaración:

Establece el color del título que se utilizará para el estado especificado.

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

El siguiente código de muestra de Playground muestra cómo crear un UIbuttonen ay UIViewControllercambiar su color de 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
fuente
0

Si está utilizando Swift, esto hará lo mismo:

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

¡Espero que ayude!

fagiani
fuente