Hello all, I want to work in landscape mode only and so far the only way I can get the appropriate coordinate frame in the rest of the application is by rotating the main window using:
CGAffineTransformMakeRotation(3.1415/2.0f);
which rotates all subviews as well.
It works great, except when I want to draw UILabel, frame rate drops like crazy. I need the truncation and all those pretty things that come with UILabel so my question is, is there a better way of going into landscape mode or speeding up the text drawing. I've seen some applications that work in landscape mode and still have text, so I wonder...