在我的iPad应用程序中,我有tabbarController for firstView,对于tabbarController我添加按钮,当我们按下时,一个viewcontroller将来。 我的问题是当我试图在PortraitUpsideDown中转换那个视图控制器时,它没有来到PortraitUpsideDown。 我在viewController中使用的代码是
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Overriden to allow any orientation.
return(interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);
//返回YES; }
}
任何人都可以告诉我,我犯了什么错误或者有什么东西可以添加。 谢谢你。