up vote 5 down vote favorite
6
share [g+] share [fb]

I was looking up how to create a view programmatically and found the following example code:

self.view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];

This works great, except I don't like that it hardcodes the size of the screen. Is there a way to look up the size of the screen? An important point someone brought up is that if the app is running during a phone call then the screen will be slightly smaller because of the green "return to call" bar.

link|improve this question

57% accept rate
feedback

2 Answers

up vote 10 down vote accepted

Is there a way to look up the size of the screen?

Yup:

CGRect screenRect = [[UIScreen mainScreen] applicationFrame];

applicationFrame

This property contains the screen bounds minus the area occupied by the status bar, if it is visible. Using this property is the recommended way to retrieve your application’s initial window size. The rectangle is specified in points.

link|improve this answer
feedback

[[UIScreen mainScreen] bounds] or [[UIScreen mainScreen] applicationFrame]

should be all you need to get the full screen size

I've only used the applicationFrame version myself.

(I also suggested [UIHardware fullScreenApplicationContentRect] but that was from some very old code - don't use it)

link|improve this answer
2  
UIHardware is not a class in the current SDK. – Shaggy Frog Mar 27 '10 at 19:47
Was already halfway through editing that :-) – Andiih Mar 27 '10 at 19:50
feedback

Your Answer

 
or
required, but never shown

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