当用户打电话或上网时,如何使 iPhone 应用程序看起来正确?
状态栏变大了,所以我的界面的一部分被切断了。 有关如何解决此问题的任何指示(例如使用自动调整大小蒙版等)?
我使用 Interface Builder 作为 UI,所以一切都是 .xib 的。
The status bar has grown, so parts of my interface get cut off. Any pointers on how to fix this (e.g. using autoresize masks, etc.)?
I use Interface Builder for the UI, so everything is .xib's.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您通常使用自动调整大小掩码来处理它,或者如果您有自定义视图,则可以在layoutSubviews方法中处理它。
模拟器有一个选项“切换通话状态”,您可以使用它来测试它,而无需将其加载到自己呼叫的电话上。
You generally handle it with autoresize masks, or if you have custom views you can deal with it in the layoutSubviews method.
The simulator has an option "Toggle In-Call Status" you can use for testing it out without having to load it on the phone calling yourself.
我想你已经回答了你自己的问题;-) 自动调整蒙版大小。 确保所有视图都可以垂直调整大小。 您可以在 IB 中检查器的尺寸选项卡上简单地执行此操作。
You've answered your own question, I think ;-) Autoresize masks. Ensure that all your views can resize vertically. You can do this simply in IB on the size tab of the inspector.