how to load view in the above picture.
this code will flipHorizontal.....
SubclassViewController *bNavigation = [[BusinessViewController alloc] initWithNibName:@"bNavigation" bundle:nil];
bNavigation = self;
bNavigation.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:bNavigation animated:YES];
[bNavigation release];
Is there any pattern to do..... as show in picture.
Thanks in advance