Fade In Fade Out Animation

后端 未结 13 1346
生来不讨喜
生来不讨喜 2021-01-30 01:45

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

13条回答
  •  一个人的身影
    2021-01-30 02:04

    The fade in and fade out animations can be combined using UIView.animate(withDuration: animations:)

    UIView.animate(withDuration: animationDuration, animations: {
                myView.alpha = 0.75
                myView.alpha = 1.0
            })
    

提交回复
热议问题