How do I animate opacity using swift?

后端 未结 4 1913
没有蜡笔的小新
没有蜡笔的小新 2021-01-18 02:00

Could someone please provide me with an example of animating the opacity of an Image View in swift??

I couldn\'t even find a good example in objective c



        
4条回答
  •  天涯浪人
    2021-01-18 02:21

    If you need a simple animation, why not just use UIView's animateWithDuration:animations: method?

    imageView.alpha = 0
    UIView.animateWithDuration(1.0) {
            imageView.alpha = 1
    }
    

提交回复
热议问题