Advertisement
priore

iOS8: correct screen bounds

Oct 2nd, 2014
609
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static inline CGSize screenSize()
  2. {
  3.     CGSize screenSize = [UIScreen mainScreen].bounds.size;
  4.     if ((NSFoundationVersionNumber <= NSFoundationVersionNumber_iOS_7_1) && UIInterfaceOrientationIsLandscape(getOrientation())) {
  5.         return CGSizeMake(screenSize.height, screenSize.width);
  6.     } else {
  7.         return screenSize;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement