I have a UIPopoverController with a subclass UINavigationController. Both the parent and child views are UITableviews.

When i call parent view originally with contentSizeForViewInPopover = (320,480) it works great.

When i click into the child view i resize the popover to contentSizeForViewInPopover = (320,780)

When return back to the parent view i cannot get the popover to resize back to contentSizeForViewInPopover = (320,480). the popover stays at the (320,780) size.

Been trying everything but just missing something. Anyone know how resize the view with UIPopoverControllers in the above scenario?

Thanks in Advance!!

link|improve this question

anyone? i still havent been able to resize my popover properly. its easy to increase in size but i cant get it to return to the smaller original size. – Abbacore May 31 '10 at 21:28
Good tagging is the way to get your question answered :) – skaffman Aug 2 '10 at 18:45
feedback

5 Answers

up vote 4 down vote accepted

I had the same problem, but none of the above solutions worked for me. However, in trying to combine their approaches, I was inspired to try a slightly different way to attack the problem. This works for me:

-(void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    viewController.contentSizeForViewInPopover = navigationController.topViewController.view.frame.size;
}

I have three different popovers that each use navigation view controllers. This solution has the nice side effect of working for all of them because it doesn't make a specific reference to any of the popover controllers, but ends up using the popoverContentSize from the popover controller currently being used.

link|improve this answer
After trying all the methods in this thread and from other places this has been the only way for me to make this work. Thanks. – Marc M Nov 22 '11 at 12:18
feedback

The contentSizeForViewInPopover property of the view controller only sets the default (initial) size of its containing UIPopoverController. To resize the UIPopoverController at an arbitrary time, you must set its popoverContentSize property. Note that popoverContentSize is a property of the UIPopoverController and not of the view controller (so you'll probably need a reference to the popover controller around).

To reset the popover's size every time a view controller becomes the top view controller of a UINavigationController, you can use the UINavigationControllerDelegate protocol methods:

navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    if (viewController == viewControllerToResize) {
        referenceToUIPopoverController.popoverContentSize = CGSizeMake(320,480);
    }
}
link|improve this answer
One potential gotcha is if the top UIViewController's contentSizeForViewInPopover has not been set, and you set the UIPopoverController's popoverContentSize you'll see the popover size first to the specified popoverContentSize, then to the default size (currently 320x1100). To solve this, i just set contentSizeForViewInPopover and then popoverContentSize. Disclaimer: this is not a well researched finding; rather just what i experienced in my current project on iOS 4.3. – kalperin Jun 17 '11 at 16:59
feedback

In my project I had to dynamically change the size of the popover.

I made the original controller delegate of my popover content controller, and implemented it's delegate method that is called each time the size is changed:

The code is bellow, hope it helps somebody:

-(void) popover:(UIViewController*)controller didChangeSize:(CGSize)size{

    if ([controller class] == [AZViewController class]){
        if (!_popoverController){
            _popoverController = [[UIPopoverController alloc] initWithContentViewController:controller]; 
        }

        _popoverController.popoverContentSize = size;
    }
}
link|improve this answer
feedback

I think I had the same problem and I solved it by setting the size for the view in the popover every time the view was about to appear. Like this:


-(void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];

    self.contentSizeForViewInPopover = CGSizeMake(320, 444); //Set your own size
}

I hope this helps you.

link|improve this answer
thanks for the input enrigue. originally i tried this and just doesnt seem to do anything. imagine, the parent popover opens at 320x480. then i select a row which pushes a "child" view inside the popover that is 320x720. if i click the back button my "parent" view is still 320x720. – Abbacore Jun 1 '10 at 18:08
Can you detect when they push the back button or when the previous view shows again after they touch the back button? If you can detect that then you can place the 'contentSizeForViewInPopover' in that part of the code. – Enrique R. Jun 2 '10 at 15:21
feedback

I think I might have figured this out as I struggled with this issue for a while now. Might be a bit optimistic so please feel free to comment if this solution isn't working for you.

In each viewController displayed with the navigation hierarchy, set the contentSizeForViewInPopover property in the viewDidAppear: method to its appropriate size.

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
    [self setContentSizeForViewInPopover:CGSizeMake(320, 320)];
}

Another thing I picked up is that when tapping back while editing a textField, the size stays small instead of the larger previous view. Call the resignFirstResponder method on your textField in the controller's viewWillDisappear.

I'm curious whether this solution works across sdks.

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.