Je crée un bouton par programme ..........
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];
comment puis-je changer la couleur du titre?
Vous pouvez utiliser -[UIButton setTitleColor:forState:]
pour le faire.
Exemple:
Objective-C
[buttonName setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
Swift 2
buttonName.setTitleColor(UIColor.blackColor(), forState: .Normal)
Swift 3
buttonName.setTitleColor(UIColor.white, for: .normal)
Merci à richardchildan
Vous avez créé le UIButton
est ajouté le ViewController
, la méthode d'instance suivante pour modifier UIFont
, tintColor
et TextColor
du UIButton
Objective-C
buttonName.titleLabel.font = [UIFont fontWithName:@"LuzSans-Book" size:15];
buttonName.tintColor = [UIColor purpleColor];
[buttonName setTitleColor:[UIColor purpleColor] forState:UIControlStateNormal];
rapide
buttonName.titleLabel.font = UIFont(name: "LuzSans-Book", size: 15)
buttonName.tintColor = UIColor.purpleColor()
buttonName.setTitleColor(UIColor.purpleColor(), forState: .Normal)
Swift
buttonName.titleLabel?.font = UIFont(name: "LuzSans-Book", size: 15)
buttonName.tintColor = UIColor.purple
buttonName.setTitleColor(UIColor.purple, for: .normal)
Solution dans Swift:
button.setTitleColor(UIColor.red, for: .normal)
Cela définira la couleur du titre du bouton.
Avec Swift 5, UIButton
a une méthode setTitleColor(_:for:)
. setTitleColor(_:for:)
a la déclaration suivante:
Définit la couleur du titre à utiliser pour l'état spécifié.
func setTitleColor(_ color: UIColor?, for state: UIControlState)
L'exemple de code Playground suivant montre comment créer une UIbutton
dans une UIViewController
et modifier sa couleur de titre à l'aide de 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
Si vous utilisez Swift, ceci fera la même chose:
buttonName.setTitleColor(UIColor.blackColor(), forState: .Normal)
J'espère que ça t'as aidé!