首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

cocos2d 2.0 反正屏修改

2012-06-29 
cocos2d 2.0 横竖屏修改在AppDelegate.m文件修改下面方法- (BOOL)shouldAutorotateToInterfaceOrientation

cocos2d 2.0 横竖屏修改

在AppDelegate.m文件修改下面方法

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{   //竖屏   return ( UIInterfaceOrientationIsPortrait( interfaceOrientation ) );   //横屏  return ( UIInterfaceOrientationIsLandscape( interfaceOrientation ) );}
?

热点排行