我在导航 Controller 中使用自定义展开转场,在转场动画中,导航栏在动画期间不可见,当动画结束时导航栏“弹出”。 ¿如何在动画期间保持导航栏的可见性?
更多细节:
我在导航栏中有一个按钮调用模态视图这个动画按预期执行,新 View 有一个按钮来触发展开segue动画 View 增长和消失,而这个动画正在执行导航栏在动画完成之前,目标 View Controller 不可见。
这是我用于自定义转场的代码。
- (void) perform {
UIViewController *sourceViewcontroller = self.sourceViewController;
UIViewController *destinationViewcontroller = self.destinationViewController;
[sourceViewcontroller.view.superview insertSubview:destinationViewcontroller.view atIndex:0];
[destinoViewcontroller beginAppearanceTransition:YES animated:YES];
[UIView animateWithDuration:0.2
delay:0.0
options:UIViewAnimationOptionCurveEaseInOut
animations:^{
origenViewcontroller.view.transform = CGAffineTransformMakeScale(1.5, 1.5);
origenViewcontroller.view.alpha = 0.0;
}
completion:^(BOOL finished){
[destinationViewcontroller.view removeFromSuperview];
[sourceViewcontroller dismissViewControllerAnimated:NO completion:NULL];
}];
}
好的,我想我明白了,我所做的是在源 View 的父 View 中插入 整个导航 Controller View ,并删除代码以 从superview 并将 dismissViewControllerAnimated 的选项设置为 YES,如下所示:
- (void) perform {
UIViewController *origenViewcontroller = self.sourceViewController;
UIViewController *destinoViewcontroller = self.destinationViewController;
[origenViewcontroller.view.superview insertSubview:destinoViewcontroller.navigationController.view atIndex:0];
[UIView animateWithDuration:0.4
delay:0.0
options:UIViewAnimationOptionCurveEaseInOut
animations:^{
origenViewcontroller.view.transform = CGAffineTransformMakeScale(2.0, 2.0);
origenViewcontroller.view.alpha = 0.0;
}
completion:^(BOOL finished){
[origenViewcontroller dismissViewControllerAnimated:YES completion:NULL];
}];
}
我仍然不确定这是否是正确的做法。
您也可以将 destinationViewController
嵌入到 UINavigationController
中,并将您的 segue 从 sourceViewController
设置为 Navigation Controller
.
关于ios - 导航栏在自定义展开转场的动画中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24332248/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |