如何将已经开发的应用程序更改为横向和纵向两个方向?

发布于 2024-11-18 23:29:18 字数 76 浏览 5 评论 0原文

我以纵向模式开发了应用程序(导航+标签栏)。

但现在我希望如果用户将其方向更改为横向或 纵向,则所有内容都应沿该方向旋转。

I developed app(navigation + tabbar) in portrait mode.

But now I want that if user change its orientation to landscape or
portrait then all should be rotate in that orientation.

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

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

发布评论

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

评论(2

瞄了个咪的 2024-11-25 23:29:18

您需要设置每个视图的控件autoresizingmask。您可以通过 xib 以及根据需要的代码来完成此操作,并在所有 viewController 中添加以下方法,它应该可以工作。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Overriden to allow any orientation.
    return YES;
}

希望这有帮助。

You need to set each view's control autoresizingmask. You can do it through xib as well as code as per your need and add below method in all viewControllers and it should work.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Overriden to allow any orientation.
    return YES;
}

Hope this help.

樱花细雨 2024-11-25 23:29:18

并查看您的“.​​plist”,您可以在此处定义“支持的界面方向”(UISupportedInterfaceOrientations)。

And have a look into your ".plist", you can define "Supported interface orientations" (UISupportedInterfaceOrientations) here.

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