Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a UIViewController subclass to handle my view for a landscape only application. I'd like for its view to resize to reflect the landscape dimensions automatically, but it doesn't seem to. A subview, however, does.

Here's the reproducing code.

@interface MyViewController : UIViewController {
  UIView *subview;
}

@implementation MyViewController

- (id)init
{
  self = [super init];
  if (self) {
    self.view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

    subview = [[UIView alloc] initWithFrame:self.view.frame];
    subview.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    [self.view addSubview:subview];
  }

  return self;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation {
  return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
  NSLog(@"My view's frame (%f,%f)", self.view.frame.size.width, self.view.frame.size.height);
  NSLog(@"Subview's frame (%f,%f)", subview.frame.size.width, subview.frame.size.height);
}

@end

And then...

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
  self.window.rootViewController = [[MyViewController alloc] init];
  [self.window makeKeyAndVisible];
  return YES;
}

Super simple. And yet, on boot, it logs:

My view's frame (320.000000,480.000000)
Subview's frame (480.000000,320.000000)

The subview is resized properly, but the parent view still has a portrait oriented frame.

How do I make the top level view resize to fit the landscape mode?

share|improve this question

3 Answers

Try this:

-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {

    if (toInterfaceOrientation == UIInterfaceOrientationPortrait || toInterfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) {

        //is portrait

        view.frame = CGRectMake(0,0,320,480)


    } else {

       //is landscape

       view.frame = CGRectMake(0,0,480,320);

    }
}

Hope this helps!

share|improve this answer
Unfortunately that just hardcodes it in, which is trivial but I'd like to avoid. Even in the current device ecosystem that code would need another branch to check the device idiom, phone or pad. – Ian Terrell Aug 3 '11 at 17:15

Use this in your viewController

self.view.frame = [[UIScreen mainScreen] bounds];
share|improve this answer

You have to allow the window autoresize subviews:

window.autoresizesSubviews=YES;

Hope this helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.