How to make dissolve animation on changing views in iphone?
Dissolve effect: one view is changing another without any movement.
Thanks a lot for the help!
[UIView beginAnimations: @"cross dissolve" context: NULL]; [UIView setAnimationDuration: 1.0f]; self.firstView.alpha = 0.0f; self.secondView.alpha = 1.0f; [UIView commitAnimations];