1

要支持所有视图的自动旋转,应该怎么做?

4

2 回答 2

2

请参阅本教程。这对我理解 Autorotation 和 Autosizing Options 有很大帮助。

http://www.bogotobogo.com/XcodeSDK-Chapter4.html

于 2011-04-01T20:59:42.800 回答
0

把它放在你所有的视图控制器中。

  - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
      return YES;
  }
于 2011-04-01T20:44:47.190 回答