Come posso cambiare il colore del titolo UIButton?


189

Creo un pulsante a livello di codice ..........

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

come posso cambiare il colore del titolo?

Risposte:


522

Puoi usare -[UIButton setTitleColor:forState:]per fare questo.

Esempio:

Objective-C

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

Swift 2

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

Swift 3

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

Grazie a richardchildan


38
Ad esempio [buttonName setTitleColor: [UIColor blackColor] forState: UIControlStateNormal];
Robert Childan,

3
Non posso credere che [UIButton setTitleColor: forState:] funzioni ma btn.titleColor = [UIColor x] non ..
Legnus,

@Lengus Non vedo come puoi accedere btn.titleColor, c'è solo btn setTitleColordisponibile
Alex Cio

1
Risposta superba. È ridicolo come devi impostare lo stato solo per cambiare il colore però ... :(
Supertecnoboff

Che ne dici di RGB?
Umit Kaya,

23

È stato creato il UIButtonè aggiunto il ViewController, il seguente metodo di istanza al cambiamento UIFont, tintColore TextColordellaUIButton

Objective-C

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

veloce

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)

3
Per favore, non semplicemente pubblicare il codice. Fornisci alcune spiegazioni o informazioni o informazioni sul tuo codice. Ad esempio, vedi questa risposta .
Azik Abdullah,

3

Soluzione in Swift 3 :

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

Questo imposterà il colore del titolo del pulsante.


1

Con Swift 5, UIButtonha un setTitleColor(_:for:)metodo. setTitleColor(_:for:)ha la seguente dichiarazione:

Imposta il colore del titolo da utilizzare per lo stato specificato.

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

Il seguente codice di esempio Playground mostra come creare un UIbuttonin a UIViewControllere modificarne il colore 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

0

Se stai usando Swift, questo farà lo stesso:

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

Spero che aiuti!

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.