My app is fixed to landscape mode, yet during viewDidLoad() and even viewWillAppear(), the following portrait dimensions still return:
self.view.bounds.size.width = 320.00
self.view.bounds.size.height = 480.00
It's not until viewDidAppear() that the actual landscape dimensions result.
self.view.bounds.size.width = 480.00
self.view.bounds.size.height = 320.00
I find this weird. Why does this happen!? and how can I fix this?
