GitHub user diegofesanto opened a pull request:
https://github.com/apache/cordova-plugin-screen-orientation/pull/2
Update YoikScreenOrientation.m
Hello,
I have similar bug in iOS 9.2.3 with Ionic
(https://github.com/gbenvenuti/cordova-plugin-screen-orientation/issues/1)
which I solved with NSThread sleep.
The new code is here:
- (UIInterfaceOrientationMask) supportedInterfaceOrientations
{
if ([self.calledWith rangeOfString:@"portrait"].location != NSNotFound)
{
return UIInterfaceOrientationMaskPortrait;
} else if([self.calledWith rangeOfString:@"landscape"].location !=
NSNotFound) {
[NSThread sleepForTimeInterval:0.050f];
return UIInterfaceOrientationMaskLandscape;
}
return UIInterfaceOrientationMaskAll;
}
Thank you.
You can merge this pull request into a Git repository by running:
$ git pull
https://github.com/diegofesanto/cordova-plugin-screen-orientation patch-1
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/cordova-plugin-screen-orientation/pull/2.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #2
----
commit 0d1bbcf1957f761ac53768061e6a294b3bfb2709
Author: diegofesanto <[email protected]>
Date: 2016-07-15T20:26:48Z
Update YoikScreenOrientation.m
Hello,
I have similar bug in iOS 9.2.3 with Ionic
(https://github.com/gbenvenuti/cordova-plugin-screen-orientation/issues/1)
which I solved with NSThread sleep.
The new code is here:
- (UIInterfaceOrientationMask) supportedInterfaceOrientations
{
if ([self.calledWith rangeOfString:@"portrait"].location != NSNotFound)
{
return UIInterfaceOrientationMaskPortrait;
} else if([self.calledWith rangeOfString:@"landscape"].location !=
NSNotFound) {
[NSThread sleepForTimeInterval:0.050f];
return UIInterfaceOrientationMaskLandscape;
}
return UIInterfaceOrientationMaskAll;
}
Thank you.
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]