在 iOS 6 下,如果我没有指定明确的位置,我所有的 CCMenus 都默认显示在屏幕中央.在 iOS 7 中,菜单位于屏幕外.
Under iOS 6 all my CCMenus appeared centered on the screen by default, if I did not assign an explicit position. Under iOS 7 the menus are positioned off screen.
在 iOS 7 下我必须明确指定位置吗?
Do I have to assign an explicit position under iOS 7?
基本上有两个潜在的问题.
如果你在 iOS 6 下隐藏了你的状态栏,这将不适用于 iOS 7,除非你在 Info.plist (查看基于控制器的状态栏外观 -> 否)
由于 Cocos2D 中的一个错误,如果您的状态栏可见,您的屏幕尺寸将被计算错误.
Due to a bug in Cocos2D your screen size will be calculated wrong, if your status bar is visible.
你必须有不同的选择来解决这个问题:
You have to different options to solve this problem:
menu.position = ccp(self.contentSize.width/2, self.contentSize.height/2);
)这篇关于在 iOS 7 下 CCMenu 错位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!