9

私はUIViewController別のものを提示していUIViewControllerます。両方のビュー コントローラーはtopLayoutGuidebottomLayoutGuideと 自動レイアウトを使用します。

インコール バーの有無にかかわらず、すべて問題ありません。または、カスタムトランジションの有無にかかわらず...

しかし、インコール バーカスタム トランジションがある場合、提示されたビュー コントローラーのサブビューが 20 ピクセル下にずれて配置されます (その結果、下部のビューがクリップされます)。

確認したところ、topLayoutGuidebottomLayoutGuideが間違っています...

トランジションのコードは次のとおりです。

#pragma mark - GETTER
- (CGFloat)presentationTopProgressValue {
    return __fromViewControllerView.y / __containerView.height;
}

#pragma mark - SETTER
- (void)set_context:(id<UIViewControllerContextTransitioning>)_context {
    __context = _context;
    __containerView = [__context containerView];

    __fromViewController = [__context viewControllerForKey:UITransitionContextFromViewControllerKey];
    __fromViewControllerView = [__fromViewController view];
    __toViewController = [__context viewControllerForKey:UITransitionContextToViewControllerKey];
    __toViewControllerView = [__toViewController view];
}

#pragma mark - TRANSITION
- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source {
    return self;
}

#pragma mark - ANIMATING
- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext {
    self._context = transitionContext;

    UIDynamicAnimator *animator = [[UIDynamicAnimator alloc] initWithReferenceView:__containerView];

    UIGravityBehavior *gravityBehavior = [[UIGravityBehavior alloc] initWithItems:@[__fromViewControllerView]];
    gravityBehavior.gravityDirection = CGVectorMake(0, 5.0f);

    __weak typeof(self) weakSelf = self;
    gravityBehavior.action = ^{
        typeof(self) strongSelf = weakSelf;

        if ([strongSelf presentationTopProgressValue] > 1.0) {
            [animator removeAllBehaviors];

            [strongSelf._context completeTransition:YES];
            strongSelf._context = nil;
        }
    };

    [__containerView addSubview:__toViewControllerView];
    [__containerView addSubview:__fromViewControllerView];

    [animator addBehavior:gravityBehavior];
}

- (NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext {
    return 0.2f;
}

プレゼンテーションのコードは次のとおりです。

MPProfileViewController *next = [MPProfileViewController new];
MPNavigationController *nav = [[MPNavigationController alloc] initWithRootViewController:next];
#warning - The transition delegate create a wrong margin layout when in-call bar is active
nav.modalPresentationStyle = UIModalPresentationFullScreen;
nav.transitioningDelegate = __dragToDismiss;
[self.navigationController presentViewController:nav animated:YES completion:nil];
4

1 に答える 1