I am migrating my apps over and on one I use a UIPickerView
. In the viewDidLoad method I create the picker and set it's y origin to be self.view.frame.size.height
so that it is off screen. Then I just move it up when needed.
On the iPhone 5 self.view.frame.size.height
is still returning 480 yet the UIView
fills the screen correctly.
I've even tried using CGRectGetHeight(self.view.bounds)
thinking that it may return something different...no dice. Any ideas as to why this maybe occurring.