Com o Swift 5, UIButton
tem 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 UIbutton
em a UIViewController
e 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