I have an app(landscape mode only app) programmed for iphone 3GS to 4S, however when i try to run it in my iPhone5 , the app just shift to left. i cannot see the letterbox mode.
In my program , i have a lot of customize UIView components that are added to my UIViewController view programmatically, as follows:
MyView *myview = [[MyView alloc] initWithFrame: CGRectMake(20, 0, 180, 300) ];
[self addSubView:myview]
how can I make my run in iPhone5 in just letterbox mode, without a lot code change?
thanks
Sounds like your project includes the 4-inch launch image (
Default-568h@2x.png). Just remove it, it should do the trick. When running on iPhone 5, any app that doesn’t include this launch image is run in letterbox mode.