gpt4 book ai didi

如果应用程序以 iPhone 横向启动,iOS 13 应用程序窗口会在 iPhone 上错误地旋转

转载 作者:行者123 更新时间:2023-12-01 21:57:08 24 4
gpt4 key购买 nike

我正在为 iOS 13(Xcode 11.4)升级一个 10 年前的 iOS 应用程序(Objective-C),并注意到以下奇怪的问题:当 iPhone(模拟器,13.4)处于横向时启动应用程序,应用程序的窗口具有正确的尺寸,但奇怪地向右旋转了 90 度。这不会在应用程序正确启动的 iPad(模拟器,13.4)或 iPhone 模拟器 12.x 上发生。
附上截图以更好地说明问题。
该应用程序使用 XIB 和以编程方式创建的 View ,没有 Storyboard 。
初始 View 创建于 application didFinishLaunchingWithOptions以通常的方式:

[self.window addSubview:tabBarController.view];
self.window.rootViewController = tabBarController;
[self.window makeKeyAndVisible];
tabBarController从 XIB 加载。

启动屏幕(这是应用程序中唯一的 Storyboard)正确显示。

有任何想法吗?

Screenshot of app showing strange rotation bug when launched in landscape orientation

最佳答案

原来,删除线

[self.window addSubview:tabBarController.view];

application didFinishLaunchingWithOptions成功了。显然这条线曾经需要过,但现在造成了严重破坏。

删除该行也修复了 Unbalanced calls to begin/end appearance transitions for <UITabBarController: ...>我在日志输出中看到的消息。

另见 this answer在 Apple Developer Forums 中,这让我走上了正轨。

关于如果应用程序以 iPhone 横向启动,iOS 13 应用程序窗口会在 iPhone 上错误地旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61101200/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com