We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I present a window with a root view controller which forces landscape orientation:
- (UIInterfaceOrientationMask)supportedInterfaceOrientations { return UIInterfaceOrientationMaskLandscapeRight; } - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation { return UIInterfaceOrientationLandscapeRight; } - (BOOL)shouldAutorotate { return YES; }
Upon dismissing the window:
[TTWindowManager.sharedInstance dismissTopWindowWithCompletion:NULL]
The outgoingWindow orientation remains landscape & I can't return the orientation back to portrait.
outgoingWindow
The text was updated successfully, but these errors were encountered:
I'm trying to reproduce the issue with the demo project. This is pretty much what I'm experiencing: http://d.pr/f/1bRM7
Sorry, something went wrong.
Removing the backgroundAnimationWindow seems to improve this issue.
backgroundAnimationWindow
No branches or pull requests
If I present a window with a root view controller which forces landscape orientation:
Upon dismissing the window:
The
outgoingWindow
orientation remains landscape & I can't return the orientation back to portrait.The text was updated successfully, but these errors were encountered: