Skip to content

Commit fd38fff

Browse files
Moves viewControllerForKey to use viewForKey with transitions where (#6238)
Moves viewControllerForKey to use viewForKey with transitions where appropriate as discussed in this Stack Overflow post: https://stackoverflow.com/questions/24338700/from-view-controller-disappears-using-uiviewcontrollercontexttransitioning/25193675#25193675 This mainly resolves an issue when using animations with `dismissModal` that results in all views being removed and a black screen appearing as discussed in #6195 The remaining `viewControllerForKey` calls should probably be removed too where their `view` property is being used, but this seems to resolve the bug for now at least!
1 parent 28928e5 commit fd38fff

5 files changed

+23
-22
lines changed

lib/ios/ModalDismissTransitionDelegate.m

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ - (NSArray *)createTransitionsFromVC:(UIViewController *)fromVC toVC:(UIViewCont
1313
}
1414

1515
- (void)prepareTransitionContext:(id<UIViewControllerContextTransitioning>)transitionContext {
16-
UIViewController* toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
17-
UIViewController* fromVC = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
16+
UIView* toView = [transitionContext viewForKey:UITransitionContextToViewKey];
17+
UIView* fromView = [transitionContext viewForKey:UITransitionContextFromViewKey];
1818

19-
fromVC.view.alpha = 0;
20-
[transitionContext.containerView addSubview:toVC.view];
21-
[transitionContext.containerView addSubview:fromVC.view];
19+
fromView.alpha = 0;
20+
[transitionContext.containerView addSubview:toView];
21+
[transitionContext.containerView addSubview:fromView];
2222
}
2323

2424
@end

lib/ios/ModalTransitionDelegate.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ - (NSArray *)createTransitionsFromVC:(UIViewController *)fromVC toVC:(UIViewCont
1515
}
1616

1717
- (void)prepareTransitionContext:(id<UIViewControllerContextTransitioning>)transitionContext {
18-
UIViewController* toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
19-
toVC.view.alpha = 0;
20-
[transitionContext.containerView addSubview:toVC.view];
18+
UIView* toView = [transitionContext viewForKey:UITransitionContextToViewKey];
19+
toView.alpha = 0;
20+
[transitionContext.containerView addSubview:toView];
2121
}
2222

2323
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source {

lib/ios/RNNAnimationsTransitionDelegate.m

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ - (NSTimeInterval)transitionDuration:(id <UIViewControllerContextTransitioning>)
2222
}
2323

2424
- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext {
25-
UIViewController* toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
26-
UIViewController* fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
25+
UIView* toView = [transitionContext viewForKey:UITransitionContextToViewKey];
26+
UIView* fromView = [transitionContext viewForKey:UITransitionContextFromViewKey];
2727

2828
[CATransaction begin];
2929
[CATransaction setCompletionBlock:^{
3030
[transitionContext completeTransition:![transitionContext transitionWasCancelled]];
3131
}];
3232

3333
if (_isDismiss) {
34-
[[transitionContext containerView] addSubview:toViewController.view];
35-
[[transitionContext containerView] addSubview:fromViewController.view];
36-
[self animateElement:self.transitionOptions view:fromViewController.view elementName:@"content"];
34+
[[transitionContext containerView] addSubview:toView];
35+
[[transitionContext containerView] addSubview:fromView];
36+
[self animateElement:self.transitionOptions view:fromView elementName:@"content"];
3737
} else {
38-
[[transitionContext containerView] addSubview:toViewController.view];
39-
[self animateElement:self.transitionOptions view:toViewController.view elementName:@"content"];
38+
[[transitionContext containerView] addSubview:toView];
39+
[self animateElement:self.transitionOptions view:toView elementName:@"content"];
4040
}
4141

4242
[CATransaction commit];

lib/ios/RNNPushAnimation.m

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ - (NSTimeInterval)transitionDuration:(id <UIViewControllerContextTransitioning>)
1313
}
1414

1515
- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext {
16-
UIViewController* fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
17-
UIViewController* toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
16+
UIViewController *toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
17+
UIView* fromView = [transitionContext viewForKey:UITransitionContextFromViewKey];
18+
UIView* toView = [transitionContext viewForKey:UITransitionContextToViewKey];
1819

19-
[[transitionContext containerView] addSubview:fromViewController.view];
20-
[[transitionContext containerView] addSubview:toViewController.view];
20+
[[transitionContext containerView] addSubview:fromView];
21+
[[transitionContext containerView] addSubview:toView];
2122

2223
[CATransaction begin];
2324
[CATransaction setCompletionBlock:^{

lib/ios/TransitionDelegate.m

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ - (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionCo
2626
}
2727

2828
- (void)prepareTransitionContext:(id<UIViewControllerContextTransitioning>)transitionContext {
29-
UIViewController* toVC = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
30-
toVC.view.alpha = 0;
31-
[transitionContext.containerView addSubview:toVC.view];
29+
UIView* toView = [transitionContext viewForKey:UITransitionContextToViewKey];
30+
toView.alpha = 0;
31+
[transitionContext.containerView addSubview:toView];
3232
}
3333

3434
- (void)performAnimationOnce {

0 commit comments

Comments
 (0)