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 错位
基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01