I'd like to disable the automatic screen rotation on an iPad app. All i do in my ViewController's is:
override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
return [.portrait, .portraitUpsideDown]
}This works with the latest iOS 11.x release but not on iOS 12 beta. Does anyone have this issue too? Maybe there is already a radar for that.