I have a popover containing a UINavigationController. I can display the popover fine, and it contains the navController just fine. The navController contains a tableView and when I select an item it creates a new detail view:

     DeviceDetailViewController *detailViewController = 
[[[DeviceDetailViewController alloc] initWithNibName:@"DeviceDetailViewController" bundle:nil] autorelease];

I then push it the new view controller:

    [self.navigationController pushViewController:detailViewController animated:YES];

This is when the problem occurs: after pushing the new view the popover resizes to the maximum height available on the iPad.

I have tried setting the height of all the views in the xib to fixed height rather than flexible. I have tried explicitly setting the height of the popover. I have also tried using different view controllers as the child view. The problem remains: the popover wants to resize itself to max height automatically whenever a new view is pushed to the navigation controller.

Here's a question which discusses trying to deliberately control the size of the popover when pushing new views: http://stackoverflow.com/questions/2926308/uipopovercontroller-w-uinavigationcontroller-subview-contentsizeforviewinpopover

I thought this might be a brute force method to control the size. Strangely enough, though, it actually causes some quick graphics quirks (as if the view were being freshly animated in) followed by continuing to resize as described above.

In other words, something is literally forcing the popover to its maximum height, and it seems to occur after all delegate methods have been called.

Is it the navigation controller? Has anyone seen this kind of thing?

link|improve this question
feedback

6 Answers

up vote 64 down vote accepted

This fixed it for me after I had the same issue (coincidently also today):

In your detailViewController add this:

- (void)viewWillAppear:(BOOL)animated {

    CGSize size = CGSizeMake(320, 480); // size of view in popover
    self.contentSizeForViewInPopover = size;

    [super viewWillAppear:animated];

}

You also want to add something similar to your original DeviceDetailViewController to prevent resizing when tapping the back NavbarItem.

link|improve this answer
2  
Thanks! I had the same problem and UIViewController's contentSizeForViewInPopover attribute fixed it. – titaniumdecoy Sep 3 '10 at 22:30
Thank you, you saved my day :D – Yildiray Dec 6 '10 at 9:14
1  
Thanks , works like charm ! – RVN Mar 11 '11 at 12:25
works perfectly! thanks a lot!!! – Claus May 27 '11 at 13:53
1  
In at least one case, I still had to explicitly set the popup height itself (if the popover controller was already visible with a defined height). But otherwise this worked for returning to a prior page in a navigation controller. – Kendall Helmstetter Gelner Aug 22 '11 at 5:23
show 4 more comments
feedback

Much like handling it in viewWillAppear, another way to deal with this is to override contentSizeForViewInPopover. Very terse:

-(CGSize)contentSizeForViewInPopover
{
    return self.view.bounds.size;
}
link|improve this answer
Works with iOS5.borked solution didn't seem to work with ios5. – palaniraja Mar 14 at 17:50
feedback

For IOS5

I recommend you do it in:

- (void)viewDidLoad {
    [super viewDidLoad];

    CGSize size = CGSizeMake(320, 480); // size of view in popover
    self.contentSizeForViewInPopover = size;

}
link|improve this answer
feedback

I had a similar issue.

I had a popover present from a button in a toolbar. The popover was set to a specific size. It was a table view. When the table row was selected, a new view controller with a navigation controller was called.

When the back button was selected, the popover became the default size (320x1100 I believe), instead of the specific size that I desired.

The original code was:

  MyTableViewController *myVC = [[MyTableViewController alloc] init];
  UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:myVC];

  UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:navController];
  popover.delegate = self;

  popover.popoverContentSize = CGSizeMake(400.0, 500.0);

  [myVC release];
  [navController release];
  [popover release];

I added one line to solve the problem. Granted it is kind of a work around because I had to subtract the height of the header. Maybe one of you could enlighten me with a better method. Anyway, it works.

  MyTableViewController *myVC = [[MyTableViewController alloc] init];

  UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:myVC];

  UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:navController];
  popover.delegate = self;

  popover.popoverContentSize = CGSizeMake(400.0, 500.0);

  //Subtract the height of the header to match the total popover size (not just the view).
  myVC.contentSizeForViewInPopover = CGSizeMake(400.0, 500-44);

  [myVC release];
  [navController release];
  [popover release];

I believe that when a nav controller is involved, and the back button is pressed, it causes the popover to default to its default size. By adding the contentSizeForViewInPopover property for the view controller myVC, it forces the specific size.

Hope this is helpful.

Kurt

link|improve this answer
1  
Thanks. Your suggestion works for me while the others don't. – Wayne Lo Dec 5 '11 at 23:04
feedback

In response to graphical glitches with animations:

The UIPopoverController animations conflict with the UINavigation controllers animations, if you create the popover with a UINavigationController inside it. It results in graphical glitches when animating. To fix the issue, set animated parameter to false when pushing other controllers, or when displaying the toolbar.

Pushing View Controllers:

[self.navigationController pushViewController:detailViewController animated:NO];

Making the Toolbar visible:

[[self navigationController] setToolbarHidden:NO animated:NO]; 

Setting the animated:NO will make the animations look correct in a UIPopoverController.

link|improve this answer
The animation conflicts between UIPopoverController and [UINavigationController setToolbarHidden:animated:] was a problem I was facing. Good tip, as the fix is not intuitive. setToolbarHidden with no animation will actually show/hide the toolbar with animation handled by the UIPopoverController, as you say. Very subtle but annoying gotcha. – Chris Miles Feb 18 '11 at 7:42
feedback

Slight varient on borked's advice (which pointed me in the right direction, thanks for that!), here's what I do when pushing a new controller to maintain the size before pushing it:

productViewController.contentSizeForViewInPopover = self.view.bounds.size;
self.contentSizeForViewInPopover = self.view.bounds.size;

[self.navigationController pushViewController:productViewController animated:YES];

I like this because I don't have to hardcode the popover values in every view controller (good since I use them at various heights).

The self.contentSizeForViewInPopover line is to preserve the size when the user hits back. I guess you could put this line somewhere else, like viewWillAppear or wherever you like.

Seems to work...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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