3

alt text

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

kiran kumar
  • 1,349
  • 4
  • 21
  • 40

1 Answers1

0

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.

Community
  • 1
  • 1
rickerbh
  • 9,731
  • 1
  • 31
  • 35