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

修改屏幕的旋转方向,使用与IPHONE以及IPad

Posted on 2011-08-24 08:17  星尘的天空  阅读(330)  评论(0编辑  收藏  举报

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

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

{

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

}

THE END !