首页 > 其他 > 详细

cocos2d 设置iphone竖屏

时间:2014-05-30 08:11:10      阅读:378      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return UIInterfaceOrientationIsPortrait(interfaceOrientation );
}

// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead
- (NSUInteger) supportedInterfaceOrientations{
#ifdef __IPHONE_6_0
    return UIInterfaceOrientationMaskPortrait;
#endif
}
bubuko.com,布布扣

 

cocos2d 设置iphone竖屏,布布扣,bubuko.com

cocos2d 设置iphone竖屏

原文:http://www.cnblogs.com/yufenghou/p/3756927.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!