स्विफ्ट 5 के साथ, UIButton
एक setTitleColor(_:for:)
विधि है। setTitleColor(_:for:)
निम्नलिखित घोषणा है:
निर्दिष्ट राज्य के लिए उपयोग करने के लिए शीर्षक का रंग सेट करता है।
func setTitleColor(_ color: UIColor?, for state: UIControlState)
निम्नलिखित खेल का मैदान नमूना कोड दिखाता है कि कैसे UIbutton
एक का उपयोग करें UIViewController
और इसे शीर्षक रंग का उपयोग करके बदलें 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