我有UICollectionView
UIViewController
(纵向模式)。
我正在呈现firstviewcontroller
的第二个secondviewcontroller
顶部(现在处于纵向模式)。然后我正在转动secondviewcontroller
(现在处于横向模式)。
然后我解雇UIViewController
(现在处于横向模式)。
现在在第一个UICollectionView
中,ssh -p 29418 yourusername@review.openstack.org gerrit query --comments --current-patch-set <changeid>
项目正按照纵向模式进行排列。但它应该是根据景观模式。它不是横向模式,而是采用纵向模式和反面模式。
答案 0 :(得分:0)
将此添加到您的ViewController:
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}