TSPopover
TSPopover copied to clipboard
Landscape Support?
Doesn't really work in landscape mode
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.