File tree 5 files changed +23
-22
lines changed
5 files changed +23
-22
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ - (NSArray *)createTransitionsFromVC:(UIViewController *)fromVC toVC:(UIViewCont
13
13
}
14
14
15
15
- (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 ];
18
18
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 ];
22
22
}
23
23
24
24
@end
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ - (NSArray *)createTransitionsFromVC:(UIViewController *)fromVC toVC:(UIViewCont
15
15
}
16
16
17
17
- (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 ];
21
21
}
22
22
23
23
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController : (UIViewController *)presented presentingController : (UIViewController *)presenting sourceController : (UIViewController *)source {
Original file line number Diff line number Diff line change @@ -22,21 +22,21 @@ - (NSTimeInterval)transitionDuration:(id <UIViewControllerContextTransitioning>)
22
22
}
23
23
24
24
- (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 ];
27
27
28
28
[CATransaction begin ];
29
29
[CATransaction setCompletionBlock: ^{
30
30
[transitionContext completeTransition: ![transitionContext transitionWasCancelled ]];
31
31
}];
32
32
33
33
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" ];
37
37
} 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" ];
40
40
}
41
41
42
42
[CATransaction commit ];
Original file line number Diff line number Diff line change @@ -13,11 +13,12 @@ - (NSTimeInterval)transitionDuration:(id <UIViewControllerContextTransitioning>)
13
13
}
14
14
15
15
- (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];
18
19
19
- [[transitionContext containerView ] addSubview: fromViewController.view ];
20
- [[transitionContext containerView ] addSubview: toViewController.view ];
20
+ [[transitionContext containerView ] addSubview: fromView ];
21
+ [[transitionContext containerView ] addSubview: toView ];
21
22
22
23
[CATransaction begin ];
23
24
[CATransaction setCompletionBlock: ^{
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ - (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionCo
26
26
}
27
27
28
28
- (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 ];
32
32
}
33
33
34
34
- (void )performAnimationOnce {
You can’t perform that action at this time.
0 commit comments