vote up 0 vote down star

Hi guys,

I have a resizing issue when rotating a view controller that has two views which I switch between using the flip animation. The problem appears if i do the following steps:

  1. Rotate the device when viewing the tableview.
  2. Click the info button.
  3. Rotate the device (infoView appears stretched).
  4. Click on info button (tableview appears stretched)

It appears that the view that is not added to the superview is not resizing correctly, since it was not part of the composite views when the device was rotated.. Is there any way to get this view auto resized correctly?

Below is a code sample

- (void)viewDidLoad {
    [super viewDidLoad];

    //background image
    backgroundImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bg-app.png"]];
    backgroundImageView.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight);
    [self.view addSubview: backgroundImageView];
    [backgroundImageView release];


    //infoView
    aboutImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"About.png"]];
    aboutImageView.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight);

    //tableView
    self.tableView = [[[UITableView alloc ] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain] autorelease ];
    //set the rowHeight once for performance reasons.
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
    self.tableView.rowHeight = 75;
    self.tableView.backgroundColor = [UIColor clearColor];
    self.tableView.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight);                    

    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    self.tableView.autoresizesSubviews = YES;

    //set the rowHeight once for performance reasons.
    [self.view addSubview: tableView];
    //[tableView release];

    [self.view setAutoresizingMask:UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth];//for resizing on rotation

    //info button
    UIButton * infoDarkButtonType = [[UIButton buttonWithType:UIButtonTypeInfoLight] retain];
    infoDarkButtonType.frame = CGRectMake(0.0, 0.0, 25.0, 25.0);
    infoDarkButtonType.backgroundColor = [UIColor clearColor];
    [infoDarkButtonType addTarget:self action:@selector(infoAction:) forControlEvents:UIControlEventTouchUpInside];
    UIBarButtonItem *buttonInfo = [[UIBarButtonItem alloc] initWithCustomView:infoDarkButtonType];
    self.navigationItem.rightBarButtonItem = buttonInfo;
    [infoDarkButtonType release];	
    self.navigationItem.rightBarButtonItem = buttonInfo;
    [buttonInfo release];	

}

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return YES;

}


- (void)infoAction:(id)sender{ 
    NSLog(@"Clicked on the info button");


    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.75];     /* Sub. duration here */

    UIView *superview;
    if ((superview = [tableView superview])) {
    	[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:superview cache:YES];
    	[tableView removeFromSuperview];
    	[superview addSubview:aboutImageView];
    } else if ((superview = [aboutImageView superview])) {
    	[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:superview cache:YES];
    	[aboutImageView removeFromSuperview];
    	[superview addSubview:tableView];
    }

    [UIView commitAnimations];
}

Thanks

flag

50% accept rate

1 Answer

vote up 0 vote down

Try putting the code in viewWillAppear:animated. It's called every time your view will appear. View did load is called once.

link|flag
- (void)viewWillAppear:(BOOL)animated every view inherits it. – JoePasq Oct 17 at 18:26
What code are you referring to? – Benjamin Ortuzar Oct 17 at 18:52
the code relating to the view drawing and auto-resizing that you put in your viewDidLoad method. – JoePasq Oct 17 at 19:49
I tried that but it didn't work. – Benjamin Ortuzar Oct 17 at 20:14

Your Answer

Get an OpenID
or

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