开发者

how to load nib with different transition style model. has show in figure

开发者 https://www.devze.com 2023-01-22 21:10 出处:网络
how to load view in the above picture. this code will flipHorizontal..... SubclassViewController *bNavigation = [[BusinessViewController alloc] initWithNibName:@\"bNavigation\" bundle:nil];

how to load nib with different transition style model. has show in figure

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消