首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

设立屏幕方向

2013-07-16 
设置屏幕方向在Appdelegate.ccp的bool AppDelegate::applicationDidFinishLaunching()函数中setDeviceOrie

设置屏幕方向

在Appdelegate.ccp的bool AppDelegate::applicationDidFinishLaunching()函数中setDeviceOrientation(CCDeviceOrientationPortrait);设置的只是屏幕的方向,但显示内容依旧是横屏的。

?还需要在RootViewController.mm中的- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation函数返回bool值//设置风景模式(横屏 默认)

return UIInterfaceOrientationIsLandscape( interfaceOrientation );

//肖像模式(竖屏)

return UIInterfaceOrientationIsPortrait( interfaceOrientation );//横竖屏都支持

?return YES;

热点排行