iOS 7自定义转换与UINavigationController

前端之家收集整理的这篇文章主要介绍了iOS 7自定义转换与UINavigationController前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个视频显示了我遇到的问题.
http://www.youtube.com/watch?v=C9od_2KZAbs

我正在尝试使用UIPanGestureRecognizer创建自定义交互式推送转换.我有一个交互式转换委托(使用UIPercentDrivenInteractiveTransition)和一个过渡动画师. completeTransition:似乎不必要地重新动画推动.

以下是平移手势如何控制转换:

  1. - (void) panGestureRecognized:(UIPanGestureRecognizer *) gestureRecogznier {
  2.  
  3. CGPoint translation = [gestureRecogznier translationInView:gestureRecogznier.view];
  4.  
  5. if (gestureRecogznier.state == UIGestureRecognizerStateBegan) {
  6.  
  7. self.interactiveTransitionAnimator = [[UIPercentDrivenInteractiveTransition alloc] init];
  8.  
  9. EVDetailViewController *detailViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"EVDetailViewController"];
  10. [self.navigationController pushViewController:detailViewController animated:YES];
  11. }
  12. else if (gestureRecogznier.state == UIGestureRecognizerStateChanged) {
  13.  
  14. CGFloat d = (translation.x / CGRectGetWidth(self.view.bounds)) * -1;
  15. [self.interactiveTransitionAnimator updateInteractiveTransition:d];
  16. }
  17. else if (gestureRecogznier.state == UIGestureRecognizerStateEnded) {
  18.  
  19. if ([gestureRecogznier velocityInView:self.view].x < 0) {
  20. [self.interactiveTransitionAnimator finishInteractiveTransition];
  21. } else {
  22. [self.interactiveTransitionAnimator cancelInteractiveTransition];
  23. }
  24.  
  25. self.interactiveTransitionAnimator = nil;
  26. }
  27. }

UINavigationControllerDelegate处理两个转换委托对象的销售,这是在pushViewController:被调用时触发的.

过渡动画师有一个非常简单的动画:

  1. - (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext {
  2.  
  3. UIViewController* toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
  4. [[transitionContext containerView] addSubview:toViewController.view];
  5.  
  6. CGRect finalToVCFrame = [transitionContext finalFrameForViewController:toViewController];
  7.  
  8. if (self.operation == UINavigationControllerOperationPush) {
  9.  
  10. // set offscreen to the right
  11. toViewController.view.frame = CGRectMake(320.0f,0.0f,320.0f,568.0f);
  12.  
  13. [UIView animateWithDuration:[self transitionDuration:transitionContext] delay:0.0f options:0 animations:^{
  14.  
  15. toViewController.view.frame = finalToVCFrame;
  16.  
  17. } completion:^(BOOL finished) {
  18.  
  19. // *** When this is called,the glitch occurs
  20. [transitionContext completeTransition:YES];
  21. }];
  22. }
  23. }

在视频中,平移手势结束大约60%的方式,触发finishInteractiveTransition调用.一切都顺利进行,直到UIView基于块的动画中的完成块调用completeTransition:.调用方法时,toViewController将不必要地重新动画推送动画的最后部分.在视频中,红色视图是窗口.动画持续时间为3秒.

我不知道为什么会发生这种情况.看起来像手势结束点之间的动画和completeTransition:被调用发生两次.有任何想法吗?

解决方法

找到一个工作的解决方法.

添加

  1. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND,0),^{
  2. [transitionContext completeTransition:![transitionContext transitionWasCancelled]];
  3. });

在你的完成处理程序.

为我工作

猜你在找的iOS相关文章