iPad frame width and height mixup in landscape

女生的网名这么多〃 提交于 2019-12-20 10:03:06

问题


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.


回答1:


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.




回答2:


+ (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.



来源:https://stackoverflow.com/questions/3641715/ipad-frame-width-and-height-mixup-in-landscape

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!