For everyone who is interested in this problem, here ist the solution:
We didn’t implement the method application(_:didFinishLaunchingWithOptions:) inside our AppDelegate. This somehow caused the app to not call viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) inside our ViewControllers. After we changed our app to using a SceneDelegate we didn’t need the method in the AppDelegate anymore, so we removed it. It is also declared as optional in the documentation. So I think this should not have such an effect on the app, but at least it works now again.
Topic:
UI Frameworks
SubTopic:
UIKit
Tags: