Here is some code I struggle with for a while.
If you start the fade in animation, the label text fades in. If I start the fade out animation the the label text fades ou
The fade in and fade out animations can be combined using UIView.animate(withDuration: animations:)
UIView.animate(withDuration: animations:)
UIView.animate(withDuration: animationDuration, animations: { myView.alpha = 0.75 myView.alpha = 1.0 })