I have a landscape only app. The views are designed in IB as landscape (568x320). Yet when I do this:
NSLog(@"view center: %@", NSStringFromCGPoint(self.view.center));
I get this:
view center: {160, 284}
Which is what the center would be in portait mode. This is causing a lot of problems because I want to position things at the center of the view. Why does view think it is in portrait mode, and what's the best way to center something in the view?