-1
-(NSUInteger)supportedInterfaceOrientations
{           
    return UIInterfaceOrientationMaskPortrait;
}

-(BOOL)shouldAutorotate
{
    return NO;
}

我只想在我的应用程序的一个视图中启用横向。其他视图必须仅支持纵向模式。但是对于 iOS 6,即使我使用的是 iOS 6 的最新方法,它也会自动旋转。期待正确的建议。

4

1 回答 1

0

对于仅纵向方向 ,请尝试以下方法

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationPortrait;
}

- (BOOL)shouldAutorotate {
    return FALSE;
}
于 2013-02-28T08:58:25.067 回答