Given an app with an on-screen text label and a button. Every time the button is pressed, the text changes. I want to be able to press the button and the text will "blink" when changing text, to make the text change more apparent to the user.
Given the following variables:
@IBOutlet weak var text: UILabel!
@IBAction func buttons(_ sender: UIButton) {}
I've tried SKAction, fadein/fadeout but all tutorials/help are in older versions of Swift and aren't working for me.