OpenFeint + iPad +隐藏状态栏
我的应用程序全屏运行,没有状态栏,但是当 OF 启动并询问要使用哪个帐户时,会出现状态栏。
我怎样才能禁用这个功能?请注意,当 OF 连接窗口关闭时,它会在状态栏的位置留下一个白色矩形。
My app runs fullscreen no status bar but when OF starts and asks for which account to use, a status bar appears.
How can I disable this? Note that when the OF connection window closes it leaves a white rectangle in place of the status bar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从窗口中删除viewController,设置所需的大小并将其再次添加到窗口中。示例代码如下:
Remove the viewController from window, set the size required and add it again to window. Sample code is as follows:
我不知道我是否遗漏了一些东西,但这就是我修复它的方法。
在我的 OF 委托实现中,如果添加了以下内容:
相应地定义了 SCREEN_WIDTH 和 SCREEN_HEIGHT...
我希望这会有所帮助...
I don't know if I was missing something but here is how I fixed it.
In my OF delegate implementation if added this:
having defined SCREEN_WIDTH and SCREEN_HEIGHT accordingly...
I hope this will help...