You can use following method for this. If you find any difficulty please let me know.
- Define a UIView flipContainerView that will contain either mapView or anotherView
- Add mapView to flipContainerView (and not anotherView) and flipContainerView to self.view
- set frames of flipContainerView, mapView and anotherView appropriately. mapView and anotherView will have same frame.
- Call following method to flip between mapView and anotherView
-(void) MapOranotherView
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:flipContainerView cache:YES];
if ([mapView superview])
{
[mapView removeFromSuperview];
[flipContainerView addSubview:anotherView];
[flipContainerView sendSubviewToBack:anotherView];
}
else
{
[anotherView removeFromSuperview];
[flipContainerView addSubview:mapView];
[flipContainerView sendSubviewToBack:mapView];
}
[UIView commitAnimations];
}