1

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

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

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

 categorySub.detailViewController=self.detailViewController;

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

但是,popview 控制器动画是错误的,它显示如下(从上到下动画)。

在此处输入图像描述

它应该是从右到左的动画。

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

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

4

1 回答 1

3

固定的。

问题是

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;

}

它应该是

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskAll;

}
于 2012-10-14T13:21:56.593 回答