TSPopover icon indicating copy to clipboard operation
TSPopover copied to clipboard

Landscape Support?

Open ryanmsusa opened this issue 11 years ago • 1 comments

Doesn't really work in landscape mode

ryanmsusa avatar Aug 20 '13 19:08 ryanmsusa

I had an issue in iOS 8, in landscape mode, the problem was solved removing these lines in the init method:

if(self.interfaceOrientation == UIInterfaceOrientationLandscapeLeft || self.interfaceOrientation == UIInterfaceOrientationLandscapeRight){ screenRect.size.width = [[UIScreen mainScreen] bounds].size.height; screenRect.size.height = [[UIScreen mainScreen] bounds].size.width; }

this seems to be a hack, but with iOS SDK 8, I could fix the issue.

fjsosa avatar Sep 26 '14 03:09 fjsosa