[UIScreen mainScreen].bounds vs [UIApplcation sharedApplication].keyWindow.bounds?

余生长醉 提交于 2019-12-14 03:48:05

问题


I have view that i want to cover entire screen. And i want to set its frame to cover entire screen. Browsing the stack overflow i found these two different ways of setting view frame to cover the screen:

[UIScreen mainScreen].bounds
[UIApplcation sharedApplication].keyWindow.bounds

It seems to me they are returning same values always, or at least in few test cases I have tried.

Currently i am using UIScreen, but i curious to know difference between these calls? Will there be some cases where they will return different values?


回答1:


The methods are slightly different. [UIScreen mainScreen] returns the devices UIScreen object, the bounds of this will always be the size of the devices screen. [UIApplication sharedApplication].keyWindow returns the current key UIWindow for the application, which could conceivably not be the full size of the devices screen.

Another obvious case where these could differ is if the device is attached to multiple screens. In this case, [UIScreen mainScreen].bounds will always return the devices screen size, but the key window could be on one of the other screens, and it will have a completely different size, depending on what kind of screen it is attached to.



来源:https://stackoverflow.com/questions/17465547/uiscreen-mainscreen-bounds-vs-uiapplcation-sharedapplication-keywindow-bound

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