What if I am setting this
Code:
- (void)applicationDidFinishLaunching:(UIApplication *)application {
//====================================================
//ROTATES VIEW TO LANDSCAPE MODE AND SETS THE STAGE SIZE
CGAffineTransform rotate = CGAffineTransformMakeRotation(1.57079633);
[window setTransform:rotate];
CGRect contentRect = CGRectMake(0, 0, 480, 320);
window.bounds = contentRect;
[window setCenter:CGPointMake(160.0f, 240.0f)];
//====================================================
}
This forces the app to be in landscape right (home button right)
But what if I need to keep this, and also support landscape left?
Could anyone help me figure this out?
Thanks