Answers for "swiftui click button opacity"

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

Code answers related to "Swift"

Browse Popular Code Answers by Language