-
-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
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
v3.6.7 crashes due to wrong return value of supportedInterfaceOrientations
method
#129
Comments
I need to test if everything else keeps working, since, as I wrote there, I don't know why it worked before only like that. Thanks for the tip! |
I can confirm this too. Using |
Fixed in |
I already made the change in my code and it worked :) |
Hopefully I will manage to, later during the day. What about this issue, #129? :) |
Crash:
Related method:
In versions before v3.6.7, you mistakenly used
UIInterfaceOrientationPortraitUpsideDown
(2), which should beUIInterfaceOrientationMaskPortrait
(2), coincidentally they have same value of 2, so it worked.In v3.6.7, you used
UIInterfaceOrientationMaskPortraitUpsideDown
of which the value is actually (1 << 2 = 4), so the app crashes.Solution:
You should use
UIInterfaceOrientationMaskPortrait
.The text was updated successfully, but these errors were encountered: