4

对于我们的 iPad 应用程序,我想允许在横向模式(不是纵向)下自动旋转屏幕以支持两种可能的方向。但是,在我们的应用程序的某些部分中,用户需要摇动 iPad 并将其移动到方向和方向,这将触发自动旋转功能,但不应该这样做。

是否可以取消和重新激活自动定向,这样在进入应用程序的这一部分时方向将被锁定,而在退出时则解锁?

4

1 回答 1

1

如果特定部分意味着另一个视图控制器,是的,这是可能的

只需将这行代码添加到控制器..

// which orientation that this view controller support
- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskPortrait;
}

// prevent rotation
- (BOOL)shouldAutorotate
{
    return NO;
}

// after present this view controller, which orientation do you prefer ?
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return UIInterfaceOrientationPortrait;
} 
于 2013-11-27T09:20:56.100 回答