1)我有一个任务来展示和关闭带有自定义动画的模态 UIViewController。
2)自定义动画是改变alpha并移动一个子元素
3)我创建FadeInAnimationController
和FadeOutAnimationController
类来实现 UIViewControllerAnimatedTransitioning
这样的:
- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
// obtain state from the context
CIToViewController *toViewController = (CIToViewController *)[transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
// obtain the container view
UIView *containerView = [transitionContext containerView];
// set the intial state
toViewController.view.alpha = 0.0f;
toViewController.elementBottomPosition.constant -= 20.0f;
[toViewController.view layoutIfNeeded];
// add the view
[containerView addSubview:toViewController.view];
// animate
[UIView animateWithDuration:[self transitionDuration:transitionContext]
animations:^{
toViewController.view.alpha = 1.0f;
toViewController.elementBottomPosition.constant += 20.0f;
[toViewController.view layoutIfNeeded];
}
completion:^(BOOL finished) {
[transitionContext completeTransition:YES];
}];
}
4)elementBottomPosition
是 NSLayoutConstraint,它适用于 Present 动画
5)问题:
因为 Dismiss 动画NSLayoutConstraint
不起作用,所以我不得不使用 Frame 做同样的事情,它起作用了。AutoLayout 和 iOS7 不是很好,但是因为我需要关闭这个视图,所以我不关心它的自动布局。
所以问题是为什么 NSLayoutConstraint 方法不起作用???我登录了约束animateTransition
:
NSLog(@"constraints %@", fromViewController.view.constraints);
他们仍然存在。