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
If you need a simple animation, why not just use UIView's animateWithDuration:animations: method?
animateWithDuration:animations:
imageView.alpha = 0 UIView.animateWithDuration(1.0) { imageView.alpha = 1 }