如何让视图以横向模式开始?

发布于 2024-08-26 10:57:55 字数 208 浏览 11 评论 0原文

我已经阅读了一些有关应用程序通过信息文件执行此操作的问题,但没有阅读特定视图。

我只需要设置界面以在横向视图中启动。

我设法通过 shouldAutoRotateToInterfaceOrientation: 接近我想要的效果,但它只有在旋转视图后才起作用。

我对这方面的文档有点陌生,所以我可能在错误的地方寻找这个。

任何帮助表示赞赏。

I have read a few questions about an app doing it through the info file but not a certain view.

I just need the interface to be set up to start in landscape view.

I managed to get near what I want with shouldAutoRotateToInterfaceOrientation:, but it only works after I rotate the view.

I am kinda new to the documentation on this so I may be looking in the wrong places for this.

Any help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

只怪假的太真实 2024-09-02 10:57:55

如果我正确理解您的问题,您需要:

  1. 编辑项目的 info.plist 文件
  2. 添加 UIInterfaceOrientation 属性
  3. 选择 {UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight} 之一作为其值

If I understand your question correctly, you need to:

  1. edit your project's info.plist file
  2. add the UIInterfaceOrientation property
  3. choose as its value one of {UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight}
人间不值得 2024-09-02 10:57:55

这是理论上的,但假设您的 shouldAutoRotateToInterfaceOrientation 方法中有代码可以调整视图以在给定的界面方向上显示,则在 viewDidLoad 方法中,尝试调用您的 < code>shouldAutoRotateToInterfaceOrientation 方法,使用 UIInterfaceOrientationLandscapeLeftUIInterfaceOrientationLandscapeRight

您说它仅在设备旋转时才起作用,因此在视图加载后立即手动调用该方法应该可以解决问题。

This is theoretical, but assuming that you have code in your shouldAutoRotateToInterfaceOrientation method that will adjust the view for display in the given interface orientation, in your viewDidLoad method, try calling your shouldAutoRotateToInterfaceOrientation method with either UIInterfaceOrientationLandscapeLeft or UIInterfaceOrientationLandscapeRight.

You say that it only works when the device is rotated, so manually calling that method as soon as the view has loaded should do the trick.

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