Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 683
MegaManX Avatar asked Dec 07 '22 06:12

MegaManX


1 Answers

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.

like image 132
Tark Avatar answered Apr 27 '23 15:04

Tark