Quote:
Originally Posted by MacSteve85
Hello, I have a block of animation code and I need to know how to fade between each image.
|
In general, fades seem to be done by changing the alpha:
Code:
// starts view invisible
myImageView.alpha = 0;
// makes the view fade in to solid
myImageView.alpha = 1;