I'm creating my own custom view controller: it contains another UIViewController and places that view below its toolbar. The container view controller is then placed with an arbitrary frame on yet another view.
I'm having an issue when I add a UITableView (and likely other views, too) to this custom UIViewController (let's call it ContainerViewController), and then animate a resize of ContainerViewController's view.
The issue is that the contained tableview is resized and placed when the animated resize of the container begins - the resize of the tableview isn't animated at all.
Some sample code:
I add the tableview to the container view in viewDidLoad:
[self addChildViewController:self.subviewController];
[self.view addSubview:self.subviewController.view];
[self.subviewController didMoveToParentViewController:self];
[self.viewController.view setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight];
I set the initial size the tableview in viewWillLayoutSubviews (setting this in viewDidLoad was causing other unrelated issues):
(barController is the top toolbar)
CGRect subviewFrame = [self.view bounds];
const CGFloat offset = CGRectGetHeight([self.barController.view frame]);
subviewFrame.origin.y += offset;
subviewFrame.size.height -= offset;
[self.subviewController.view setFrame:subviewFrame];
I animate the resizing the container:
[UIView animateWithDuration:0.2 animations:^{
[containerViewController.view setFrame:[self aDifferentFrameSize]];
}];