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
I think this is a duplicate question - solution at How can I replicate the trashing animation of Mail.app - but this solution does use private APIs.
精彩评论