CCMenu misplaced under iOS 7(在 iOS 7 下 CCMenu 错位)
问题描述
在 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:
- 显式设置 CCMenu 位置,而不是使用隐式定位(例如:
menu.position = ccp(self.contentSize.width/2, self.contentSize.height/2);
) - 设置查看基于控制器的状态栏外观->如果您不想显示状态栏,请在 Info.plist 中选择 NO
这篇关于在 iOS 7 下 CCMenu 错位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 iOS 7 下 CCMenu 错位
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01