How to load nib with another transition style model. shows in the picture

alt text

how to upload the image in the image above

this code will be flipHorizontal .....

 SubclassViewController *bNavigation = [[BusinessViewController alloc] initWithNibName:@"bNavigation" bundle:nil];
 bNavigation = self;
 bNavigation.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
 [self presentModalViewController:bNavigation animated:YES];
 [bNavigation release];

Is there any template that can be made ... as shown in the picture.

Thanks in advance

+3
source share
1 answer

I think this is a duplicate question - the solution is in How can I replicate the garbage animation of Mail.app - but this solution uses private APIs.

0
source

Source: https://habr.com/ru/post/1772633/


All Articles