Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

why do I see in some sample code from Apple (PhotoScroller) that do the following in loadView:

CGRect frame = [[UIScreen mainScreen] bounds];

instead of

CGRect frame = [[UIScreen mainScreen] applicationFrame];

Does it make a difference between the two to get the mainscreen frame?

share|improve this question

1 Answer

up vote 4 down vote accepted

ApplicationFrame is the screen size minus the size of the status bar (if visible), bounds is the screen size regardless of status bar.

So applicationFrame would return CGRectMake(0,0,320,460) assuming your app has the status bar set to be visible, while bounds would return CGRectMake(0,0,320,480) under the same conditions. Those numbers are assuming iPhone/iPod Touch screen sizes.

UIScreen Class Reference

share|improve this answer
5  
I might be mistaken, but doesn't applicationFrame return CGRectMake(0, 20, 320, 460)? Where 20 is the offset of the status bar... – Niels R. Dec 6 '11 at 13:51
2  
You're not mistaken, Niels :). The y-offset will be reported as 20 with a status bar, not 0. – Nate May 8 '12 at 1:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.