UIAlertController:supportedInterfaceOrientations was invoked recursively
This is a bug in iOS 9 that it failed to retrieve the supportedInterfaceOrientations for UIAlertController. And it seems it dropped to an infinite recursion loop in looking for the supportedInterfaceOrientations for UIAlertController (e.g., it tracks back to UIAlertControler -> UIViewController -> UINavigationController -> UITabBarController -> UIAlertController -> …), while the call to UIAlertController:supportedInterfaceOrientations actually … Read more