我有一个使用 Xcode 为 iPhone 开发的应用程序,它以纵向模式显示我的视图控制器并激活了旋转。
我的表格视图中有一个单元格在模态模式下触发一个新的视图控制器(iPhoneSignVC),我的问题是......
有没有办法从一开始就确定我的新模态视图控制器的方向?我的意思是...我希望我的新视图控制器处于横向模式并且没有在该特定视图控制器上激活屏幕旋转功能
到目前为止,我所做的是创建一个覆盖 UINavigation 控制器类的新类
#import "UINavigationController.h"
#import "iPhoneSignVC.h"
@implementation UINavigationController (overrides)
- (BOOL)shouldAutorotate
{
id currentViewController = self.topViewController;
if ([currentViewController isKindOfClass:[iPhoneSignVC class]])
return NO;
return YES;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
id currentViewController = self.topViewController;
if ([currentViewController isKindOfClass:[iPhoneSignVC class]]){
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
return (interfaceOrientation == UIInterfaceOrientationMaskAll);
}
@end
我试过这个没有成功......
预先感谢您的支持