I have an app that was developed for iOS7. Now when i run the app in iOS8 there's an issue where the right side of the view in landscape is not clickable.
It's the same issue as described here: iOS 7 When Rotating View in Tab Bar, Right Side of View is Not Clickable
But i have no TabBar within the app, not even a NavigationBar in my first view where this issue appears.
I have tried to use this code in viewDidLoad in many different viewcontrollers, but no success.
self.view.autoresizesSubviews = YES;
self.view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
Any advice on how to fix this?