我花了一些时间尝试整理iOS 7中提供的自定义过渡动画。根据this question,UINavigationControllerDelegate
是可行的方法。
但是,没有示例或文档描述如何最好地在iOS7中进行简单的垂直过渡。 (有一个plethora of other transition styles using UINavigationControllerDelegate
,但没有一个像上下滑动视图一样简单 - 还有其他建议只是修改视图位置,但这似乎是一个俗气的黑客?)。还有others too that go as far back to 2011,但他们显然没有使用UINavigationControllerDelegate
。
任何人都可以使用
UINavigationControllerDelegate
提供简单的向上/向下滑动过渡的基本工作实现吗?
免责声明:我很乐意提供代码,但由于还没有任何代码可以发布...但我确实使用jQuery创建了一个简单的示例,展示了我想要实现的目标。
查看小提琴 here
答案 0 :(得分:6)
还有其他人建议只修改视图位置,但这似乎是一个俗气的黑客
不,这不是一个俗气的黑客。那就是你做的。自定义过渡动画只是意味着您负责将新视图带入场景 - 前提是它最终位于正确的位置。因此,从底部对其进行动画处理的方法就是将其放置在底部并将其动画到位。
所以例如(几乎直接从我书中的示例代码中获取):
-(void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext {
// boilerplate
UIViewController* vc1 =
[transitionContext
viewControllerForKey:UITransitionContextFromViewControllerKey];
UIViewController* vc2 =
[transitionContext
viewControllerForKey:UITransitionContextToViewControllerKey];
UIView* con = [transitionContext containerView];
CGRect r1start = [transitionContext initialFrameForViewController:vc1];
CGRect r2end = [transitionContext finalFrameForViewController:vc2];
UIView* v1 = vc1.view;
UIView* v2 = vc2.view;
// end boilerplate
CGRect r = r2end;
r.origin.y += r.size.height; // start at the bottom...
v2.frame = r;
[con addSubview:v2];
[[UIApplication sharedApplication] beginIgnoringInteractionEvents];
[UIView animateWithDuration:0.4 animations:^{
v2.frame = r2end; // ... and move up into place
} completion:^(BOOL finished) {
[transitionContext completeTransition:YES];
[[UIApplication sharedApplication] endIgnoringInteractionEvents];
}];
}
该代码改编自我在https://github.com/mattneub/Programming-iOS-Book-Examples/blob/master/bk2ch06p292customAnimation1/ch19p620customAnimation1/AppDelegate.m的示例。示例几乎就是您所描述的内容,除了它是一个制表符控制器而不是导航控制器,它来自侧面而不是底部。但原则完全一样。
答案 1 :(得分:1)
这是流程。我试着尽量简化。