如何将 XIB 置于景观中
嘿, 我正在制作一个基于视图的应用程序。对于 xib 文件之一,我希望它仅以横向模式显示。我该怎么做?
Hey,
I am making a view based application. For one of the xib files, I want it to only appear in landscape mode. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保视图的方向设置为横向:
Make sure the view's Orientation is set to Landscape:
确保此函数返回 YES 或 (interfaceOrientation == UIInterfaceOrientationLandscape)
并且在资源文件夹中的 Project-info.plist 文件中,会有一个“支持界面方向”的选项,根据您的要求进行设置。
Make sure that this function returns YES or (interfaceOrientation == UIInterfaceOrientationLandscape)
And in your Project-info.plist file in resource folder, there will be an option for "Support Interface orientation", set it according to your requirement.