views:

23

answers:

1

Hello,

I`m getting 0 when I return this from my ViewController :

NSLog(@"%i",self.view.frame.size.height);

In Interface builder, the View it's managing is occupying the entire screen .

Help ?

+3  A: 

Height is a float. Use %f to log it.

MishieMoo
Thanks Mishie :)
Julz