Gerrit
Gerrit

Reputation: 2677

How to get max possible size of UIView

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

Answers (1)

Ole Begemann
Ole Begemann

Reputation: 135588

[[UIScreen mainScreen] bounds] will return the size of the device's screen in points.

Upvotes: 5

Related Questions