博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

启动程序强制切换到横屏模式

Posted on 2011-08-31 09:25  星尘的天空  阅读(213)  评论(0编辑  收藏  举报

启动IPhone应用程序,强制将屏幕从初始时的纵向切换到横评模式

在主UIViewController的源代码内,修改如下代码,参考代码如下所示:

// Override to allow orientations other than the default portrait orientation.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

  return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation ==                   UIInterfaceOrientationLandscapeRight);

}

THE END !