UIButton başlık rengini nasıl değiştirebilirim?


189

Programlı olarak bir düğme oluşturuyorum ..........

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

başlık rengini nasıl değiştirebilirim?

Yanıtlar:


522

Bunu -[UIButton setTitleColor:forState:]yapmak için kullanabilirsiniz .

Misal:

Objective-C

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

Hızlı 2

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

Hızlı 3

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

Richardchildan için teşekkürler


38
Örneğin, [buttonName setTitleColor: [UIColor blackColor] forState: UIControlStateNormal];
Robert Childan

3
[UIButton setTitleColor: forState:] işe yaradığına inanamıyorum ama btn.titleColor = [UIColor x] işe yaramaz ..
Legnus

@Lengus Nasıl erişebileceğinizi görmüyorum btn.titleColor, sadece btn setTitleColormevcut
Alex Cio

1
Mükemmel cevap. Gerçi sadece rengi değiştirmek için devleti ayarlamak zorunda olduğun için saçma ... :(
Supertecnoboff

RGB ile ne dersiniz?
Ümit Kaya

23

Sen oluşturulan UIButtonilave edilir ViewController, değişime aşağıdaki örnek yöntemi UIFont, tintColorve TextColorbirUIButton

Objective-C

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

hızlı

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
Lütfen kodu göndermeyin. Kodunuz hakkında bir açıklama veya bilgi veriniz. Örneğin, bu cevaba bakınız .
Azik Abdullah

3

Çözüm içinde Swift 3 :

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

Bu düğmenin başlık rengini ayarlar.


1

Swift 5 ile UIButtonbir setTitleColor(_:for:)yöntem var. setTitleColor(_:for:)aşağıdaki beyanı içerir:

Belirtilen durum için kullanılacak başlığın rengini ayarlar.

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

Aşağıdaki Bahçesi örnek kod gösteri nasıl bir oluşturmak için UIbuttonbir de UIViewControllerkullanılarak 's başlık rengini değiştirmek 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

Swift kullanıyorsanız, bu da aynı şeyi yapacaktır:

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

Umarım yardımcı olur!

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.