UIViewcontroller提供错误的方向

时间:2017-01-17 17:04:59

标签: ios objective-c uiviewcontroller uicollectionview

我有UICollectionView UIViewController(纵向模式)。

我正在呈现firstviewcontroller的第二个secondviewcontroller顶部(现在处于纵向模式)。然后我正在转动secondviewcontroller(现在处于横向模式)。

然后我解雇UIViewController(现在处于横向模式)。

现在在第一个UICollectionView中,ssh -p 29418 yourusername@review.openstack.org gerrit query --comments --current-patch-set <changeid> 项目正按照纵向模式进行排列。但它应该是根据景观模式。它不是横向模式,而是采用纵向模式和反面模式。

1 个答案:

答案 0 :(得分:0)

将此添加到您的ViewController:

- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscape;
}

Check Apple source for more information