I solved the issue like this:
| import UIKit |
| |
| extension UIScreen { |
| |
| func isPortrait() -> Bool { |
| |
| return self.bounds.width < self.bounds.height |
| } |
| } |
| |
| class BaseViewController: UIViewController { |
| |
| private lazy var _isPortrait: Bool = UIScreen.mainScreen().isPortrait() |
| |
| func isPortrait() -> Bool { |
| |
| if let parentViewController = self.parentViewController as? BaseViewController { |
| |
| return parentViewController.isPortrait() |
| } |
| |
| return _isPortrait |
| } |
| |
| override func viewWillTransitionToSize(size: CGSize, withTransitionCoordinator coordinator: UIViewControllerTransitionCoordinator) { |
| |
| if let superView = self.view.superview { |
| |
| if superView.isKindOfClass(UIWindow.self) && self.parentViewController == nil { |
| |
| _isPortrait = size.width < size.height |
| } |
| } |
| |
| super.viewWillTransitionToSize(size, withTransitionCoordinator: coordinator) |
| } |
| } |
At least I assume that the child viewController will never touch inherited private _isPortrait, because it is lazy. Only the top level view can of the rootViewController is allowed to set this property. The super viewWillTransitionToSize function is called after the check is done. So if the value was set on the rootViewController, all child viewController will have the correct value at the time their viewWillTransitionToSize function is called. This has to be done, because you can not rely on the the size of the child viewController views, but at least you can trust your rootViewController if it is fullscreen. 😉 Hope that will help someone somehow.