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!
You can also use UIViewAnimationOptionTransitionCrossDissolve in ios5 and later...
[UIView transitionFromView:currentView toView:nextView duration:2 options:UIViewAnimationOptionTransitionCrossDissolve completion:^(BOOL finished) { [currentView removeFromSuperview]; }];