我正在尝试在视图之间切换。这些类继承自 UINavigationController。我在 IBAction 中使用此代码:
CellSubview *personView = [[CellSubview alloc] init]; // The new navigation controller
self.modalTransitionStyle = 0; // tried all 3 of the options
[self presentModalViewController:personView animated:YES];
[personView release];
什么时候 :
@interface CellSubview : UINavigationController
我只是不能让视图向右滑动。(就像大多数应用程序一样)
它总是自下而上而不是选项:
personView.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
// or
personView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
我只希望 oldViewController.view 向左滑动,新的 newViewController.view 从右侧进入。
感谢您的建议
伊泰