我没有在后退按钮上添加任何过渡动画。
我的代码非常简单,如下所示,
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上运行良好。
答案 0 :(得分:3)
固定。
问题是
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
应该是
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}