Reputation: 2677
I've a question about UIViews. How can I get the max possible size? The size without StatusBar, NavBar etc?
Thanks
Upvotes: 2
Views: 621
Reputation: 135588
[[UIScreen mainScreen] bounds]
will return the size of the device's screen in points.
Upvotes: 5