Answers for "swift change button color on tap programmatically"

6

change opacity of button clicked swift

@IBAction func keyPressed(_ sender: UIButton) {
  // sets opacity to half - you can change the opacity by editing "0.5"
  sender.alpha = 0.5
  
  /* 
  Code should execute after 0.2 second delay.
  You can change delay by editing 0.2.
  */
  DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) {
    // Bring's sender's opacity back up to fully opaque
    sender.alpha = 1.0
  }
  
 }
Posted by: Guest on June-15-2020
1

set color for uibutton programmatically swift

button.setTitleColor(.red, for: .normal)
Posted by: Guest on February-21-2020

Code answers related to "swift change button color on tap programmatically"

Code answers related to "Swift"

Browse Popular Code Answers by Language