视图方向更改期间 iPad 状态栏下闪烁
我有一个简单的 iPad 应用程序,当 iPad 的方向改变时,它会在屏幕的最顶部出现奇怪的像素闪烁。我的应用程序显示的视图也是简单的;它来自 Xcode 4 中的“基于视图的应用程序”模板。
当我旋转 iPad 屏幕时,我惊讶地看到顶部闪烁;即使我的视图是空的(没有控件),我仍然看到闪烁。
有可能是因为我正在运行调试版本而发生这种情况吗?我还没有尝试过发布版本;我想看看这是否是调试模式特有的,或者是否还有其他我尚未考虑到的事情。
编辑:澄清一下,我在第一代 iPad 上运行我的应用程序时看到闪烁,而不是在 iOS 模拟器下运行。该应用程序使用 Xcode 4.1 构建,在 Lion 下运行。我的 iPad 上的其他应用程序都没有出现我在方向更改期间看到的闪烁现象。
I have a bare-bones iPad app that experiences odd pixel flickering along the very top of the screen when the iPad's orientation changes. The view my app is displaying is also bare-bones; it comes from the "View-Based Application" template in Xcode 4.
I'm surprised to see flickering along the top when I rotate the iPad's screen; even if my view is empty (no controls), I still see the flickering.
Is it possible that it's happening because I'm running a debug build? I haven't tried a release build yet; I wanted to see if this is specific to debug mode, or if there is something else I haven't yet taken into consideration.
Edit: just to clarify, I see the flickering while running my app on a first gen iPad, not under the iOS Simulator. The app is built with Xcode 4.1, running under Lion. No other apps on my iPad exhibit the flickering I'm seeing with my app during orientation changes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了类似的问题,这是由于使用
colorWithpatternImage
: 设置颜色/图像到窗口。I faced a similar issue, it was due to setting a color/image using
colorWithpatternImage
: to the window.