presentViewController不会垂直

时间:2013-01-04 19:27:02

标签: ios6

此代码显示了我的新视图控制器,但它是从右侧而不是从底部进入。我无法弄清楚如何让它做一个垂直动画。有什么想法吗?

UINavigationController *navigationController = [[UINavigationController alloc]
                                            initWithRootViewController:newDeal];
navigationController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentViewController:navigationController animated:YES completion: nil];

1 个答案:

答案 0 :(得分:0)

我找到了 - 我的segue被设置为“推”而不是“模态”。一旦我将样式设置为Modal并转换为“Cover Vertical”,它就能很好地完成。