mirror of
https://github.com/wnagrodzki/ViewControllerContainment.git
synced 2025-04-05 11:52:02 +02:00
Beginning appearance transition just before view controller's view is added to view hierarchy
This commit is contained in:
parent
728a5267fd
commit
7577792dd8
1 changed files with 1 additions and 1 deletions
|
@ -134,9 +134,9 @@
|
|||
[fromViewController beginAppearanceTransition:NO animated:YES];
|
||||
|
||||
[self addChildViewController:toViewController];
|
||||
[toViewController beginAppearanceTransition:YES animated:YES];
|
||||
toViewController.view.frame = self.containerView.bounds;
|
||||
toViewController.view.alpha = 0;
|
||||
[toViewController beginAppearanceTransition:YES animated:YES];
|
||||
[self.containerView addSubview:toViewController.view];
|
||||
|
||||
[UIView animateWithDuration:0.3
|
||||
|
|
Loading…
Add table
Reference in a new issue