iOS6上的UINavigationController后退按钮弹出视图动画

时间:2012-10-10 18:01:44

标签: ipad ios6

我没有在后退按钮上添加任何过渡动画。

我的代码非常简单,如下所示,

 categorySubListViewController *categorySub =[[categorySubListViewController alloc] initWithNibName:@"categorySubListViewController" bundle:nil];

 categorySub.detailViewController=self.detailViewController;

 [self.navigationController pushViewController:categorySub animated:YES];

然而,popview控制器动画是错误的,它显示如下(直到向下动画)。

enter image description here

左边的动画应该是正确的。

我的代码或iOS 6问题有什么问题吗?

在iPhone iOS 6,iPad iOS 6 Portrait上运行良好。

1 个答案:

答案 0 :(得分:3)

固定。

问题是

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;

}

应该是

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskAll;

}