Here is the code:
[UIView transitionFromView:mapView toView:tableView duration:5.0 options:UIViewAnimationOptionShowHideTransitionViews|UIViewAnimationTransitionFlipFromLeft completion:NULL];
After calling this method, mapView is hidden and the tableView is visible, but there is no animation! I changed the duration to 5 seconds to make sure that I don’t miss the animation, but it really doesn’t come to life. Is there something wrong with the above line or do I need to do something to activate the animation?
source share