Mam UIViewController
prezentujący inny UIViewController
. Oba kontrolery widoku używają topLayoutGuide
i bottomLayoutGuide
z Auto-układem.Niestandardowe przejście UIViewController ustaw nieprawidłowe topLayoutGuide i bottomLayoutGuide, gdy aktywny jest pasek połączenia
Wszystko w porządku, z paskiem i bez niego. Lub z lub bez niestandardowego przejścia ...
Ale, gdy znajduje się w wezwanie bar i niestandardową przejściowym subview mojego prezentowanym kontrolera widok jest niesłuszna od 20px w dół (w wyniku ściętym widzenia na dnie).
sprawdziłem i jest to topLayoutGuide
i bottomLayoutGuide
które są niewłaściwie ...
Oto kod przejścia:
#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;
}
Oto kod z prezentowania:
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];
wypróbowałeś nav.modalPresentationStyle = UIModalPresentationCustom; zamiast UIModalPresentationFullScreen dla niestandardowego przejścia – Mukesh
Próbowałem - nie działa. – NAlexN