iPhone视图和状态栏
当我将一个视图(view1)添加到另一个视图(view2)时,我发现一个错误: 如果状态栏没有隐藏,添加视图(view1)后,下面的view1会出现20像素高的空栏。 如果状态栏被隐藏,这种现象就会消失。 谁能帮我解决这个问题。 想你了!
When i add one view(view1) to another view(view2), i find a error:
If the status bar is not hidden, after add the view(view1), bellow view1 can appear 20 pixel hight null bar.
If the status bar is hidden, this phenomenon disappear.
Who can help me to resolve this question.
think you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需检查状态栏是否隐藏并通过添加 20 个像素来调整第二个 UIView 的框架
Just check if the statusbar is hidden and adjust the frame of your second UIView by adding 20 pixels
作为一个更具体的示例,我有一个情况,在应用程序启动后,我实际上还没有准备好让用户看到屏幕上发生的情况。在这种情况下,我有一个仍在渲染的 Web 视图,因此我将 Default.png 文件覆盖到我的视图上,而后台发生了一些垃圾。
As a more concrete example, I have a case where, after the application has launched, I'm actually not quite ready for the user to see what is happening on the screen. In this case, I have a webview that is still rendering, so I overlay the the Default.png file onto my view while some junk happens in the background.