views:

128

answers:

0

the app has the structure of tabbarController -> navigationController -> viewController , when I go to another viewcontroller with the view transition like this

vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
UINavigationController* nvc = [[[UINavigationController alloc] initWithRootViewController:vc] autorelease]; 
[self presentModalViewController:nvc  animated:YES];

but obviously the tabbar is gone on the another viewcontroller. is there any way to keep the tabbar while using the flipping view transition? Thanks.