Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPad frame width and height mixup in landscape

I have done what this question said here: Landscape Mode ONLY for iPhone or iPad

but the view.frame.size.height is still 1024, which is the height when the device is in portrait, surely when the interface rotates the width and height switch values?

(say you wanted to split the screen into 3 views, for an app that is both landscape and portrait, and you did view.frame.size.width / 3 , in landscape that wouldn't be correct as the width value wouldn't actually be the width)

I'm sure on the iPhone the width and height switch, so why not on the iPad?


This has struck me again I 'm not working with a nib either, could someone please give an acceptable answer? (ie one that doesn't involve manually switch the width and height)

Once the bounty has been awarded to an answer, I will then start another bounty for 250 and award it to the same person.

like image 860
Jonathan. Avatar asked Sep 04 '10 09:09

Jonathan.


2 Answers

You haven't specified which "view" you're querying. Assuming this is the top level subview of the window:

You should query the view's bounds not its frame. frame is in the coordinate in which the view is defined (the outside world) hence may remain constant as you rotate. bounds is the coordinate used "inside" the view and for its subviews. This does change when you rotate.

like image 133
mohsenr Avatar answered Nov 13 '22 15:11

mohsenr


+ (int) currentWidth
{
 UIScreen *screen = [UIScreen mainScreen];
 int width = screen.currentMode.size.width;
 int height = screen.currentMode.size.height;
 return (UIDeviceOrientationIsLandscape([[UIApplication sharedApplication] statusBarOrientation]))? MAX (width, height) : MIN (width, height);
}

I spent a while trying to work out the simplest solution to a frustrating problem, and this was the best I could come up with. Hope it can help.

like image 40
maternaghan Avatar answered Nov 13 '22 15:11

maternaghan