Ume
Ume
I have the issue on Xcode11.1 too.
Same issue here, how could you fix the issue, or there is no way at the moment? Add to that, now I cannot input the password when I try to...
This is important issue for my app, Voicepaper too.
any news?
It seems like this change on iOS8 is the reason. http://stackoverflow.com/questions/24150359/is-uiscreen-mainscreen-bounds-size-becoming-orientation-dependent-in-ios8
This is a quick fix for iOS8 only app. ``` case UIInterfaceOrientationLandscapeLeft: rotateAngle = -M_PI/2.0f; newCenter = CGPointMake([UIScreen mainScreen].bounds.size.height/2, [UIScreen mainScreen].bounds.size.width/2); break; case UIInterfaceOrientationLandscapeRight: rotateAngle = M_PI/2.0f; newCenter = CGPointMake([UIScreen...
This is a quick fir fox iOS9 too. ``` - (void)positionHUD:(NSNotification*)notification { UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; CGRect orientationFrame = [UIScreen mainScreen].bounds; if(UIInterfaceOrientationIsLandscape(orientation)) { float temp = orientationFrame.size.width; orientationFrame.size.width...
OK, thanks for your comment anyway!
I still cannot find how to fix this issue with iOS13.5.1.