如何将 XIB 置于景观中

发布于 2024-11-10 05:12:18 字数 58 浏览 4 评论 0原文

嘿, 我正在制作一个基于视图的应用程序。对于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧街凉风 2024-11-17 05:12:18

确保视图的方向设置为横向:
在此处输入图像描述

Make sure the view's Orientation is set to Landscape:
enter image description here

不…忘初心 2024-11-17 05:12:18

确保此函数返回 YES 或 (interfaceOrientation == UIInterfaceOrientationLandscape)

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return YES;
    // Or you can use the following return statement: 
    //return (interfaceOrientation == UIInterfaceOrientationLandscape);
}

并且在资源文件夹中的 Project-info.plist 文件中,会有一个“支持界面方向”的选项,根据您的要求进行设置。

Make sure that this function returns YES or (interfaceOrientation == UIInterfaceOrientationLandscape)

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return YES;
    // Or you can use the following return statement: 
    //return (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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文