0

奇怪的问题,但是当某些 UIViewController 不支持任何方向时会发生什么?:)

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return NO;
}

将支持哪个方向?该 UIViewController 的行为将是什么?

4

2 回答 2

1

默认情况下,方向是纵向,除非您明确将方向更改为横向。

于 2012-05-09T12:56:53.953 回答
1

-shouldAutorotateToInterfaceOrientation:从所有界面方向返回 NO 。它应该支持至少一个方向。

于 2012-05-09T12:57:24.647 回答