如今使用默认模板创建的iOS App都支持手势返回功能,假设导航栏的返回button是自己定义的那么则会失效,也能够參考这里手动设置无效。

  1. if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
  2. self.navigationController.interactivePopGestureRecognizer.enabled = NO;
  3. }

假设是由于自己定义导航button而导致手势返回失效,那么能够在NavigationController的viewDidLoad函数中加入例如以下代码:

  1. - (void)viewDidLoad
  2. {
  3. [super viewDidLoad];
  4. // Do any additional setup after loading the view.
  5. __weak typeof (self) weakSelf = self;
  6. if ([self respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
  7. self.interactivePopGestureRecognizer.delegate = weakSelf;
  8. }
  9. }

这样写了以后就能够通过手势滑动返回上一层了,可是假设在push过程中触发手势滑动返回。会导致导航栏崩溃(从日志中能够看出)。针对这个问题,我们须要在pop过程禁用手势滑动返回功能:

  1. - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
  2. {
  3. // fix 'nested pop animation can result in corrupted navigation bar'
  4. if ([self respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
  5. self.interactivePopGestureRecognizer.enabled = NO;
  6. }
  7. [super pushViewController:viewController animated:animated];
  8. }
  1. - (void)navigationController:(UINavigationController *)navigationController
  2. didShowViewController:(UIViewController *)viewController
  3. animated:(BOOL)animated
  4. {
  5. if ([navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
  6. navigationController.interactivePopGestureRecognizer.enabled = YES;
  7. }
  8. }

除了使用系统默认的动画,还能够使用自己定义过渡动画(丰满的文档):

  1. - (id<UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
  2. animationControllerForOperation:(UINavigationControllerOperation)operation
  3. fromViewController:(UIViewController *)fromVC
  4. toViewController:(UIViewController *)toVC
  5. {
  6. if (operation == UINavigationControllerOperationPop) {
  7. if (self.popAnimator == nil) {
  8. self.popAnimator = [WQPopAnimator new];
  9. }
  10. return self.popAnimator;
  11. }
  12. return nil;
  13. }
  14. - (id<UIViewControllerInteractiveTransitioning>)navigationController:(UINavigationController *)navigationController
  15. interactionControllerForAnimationController:(id<UIViewControllerAnimatedTransitioning>)animationController
  16. {
  17. return self.popInteractionController;
  18. }
  19. #pragma mark -
  20. - (void)enablePanToPopForNavigationController:(UINavigationController *)navigationController
  21. {
  22. UIScreenEdgePanGestureRecognizer *left2rightSwipe = [[UIScreenEdgePanGestureRecognizer alloc]
  23. initWithTarget:self
  24. action:@selector(didPanToPop:)];
  25. //[left2rightSwipe setDelegate:self];
  26. [left2rightSwipe setEdges:UIRectEdgeLeft];
  27. [navigationController.view addGestureRecognizer:left2rightSwipe];
  28. self.popAnimator = [WQPopAnimator new];
  29. self.supportPan2Pop = YES;
  30. }
  31. - (void)didPanToPop:(UIPanGestureRecognizer *)panGesture
  32. {
  33. if (!self.supportPan2Pop) return ;
  34. UIView *view = self.navigationController.view;
  35. if (panGesture.state == UIGestureRecognizerStateBegan) {
  36. self.popInteractionController = [UIPercentDrivenInteractiveTransition new];
  37. [self.navigationController popViewControllerAnimated:YES];
  38. } else if (panGesture.state == UIGestureRecognizerStateChanged) {
  39. CGPoint translation = [panGesture translationInView:view];
  40. CGFloat d = fabs(translation.x / CGRectGetWidth(view.bounds));
  41. [self.popInteractionController updateInteractiveTransition:d];
  42. } else if (panGesture.state == UIGestureRecognizerStateEnded) {
  43. if ([panGesture velocityInView:view].x > 0) {
  44. [self.popInteractionController finishInteractiveTransition];
  45. } else {
  46. [self.popInteractionController cancelInteractiveTransition];
  47. }
  48. self.popInteractionController = nil;
  49. }
  50. }

例如以下这个代理方法是用来提供一个非交互式的过渡动画的:

  1. - (id<UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
  2. animationControllerForOperation:(UINavigationControllerOperation)operation
  3. fromViewController:(UIViewController *)fromVC
  4. toViewController:(UIViewController *)toVC
  5. {
  6. if (operation == UINavigationControllerOperationPop) {
  7. if (self.popAnimator == nil) {
  8. self.popAnimator = [WQPopAnimator new];
  9. }
  10. return self.popAnimator;
  11. }
  12. return nil;
  13. }

而以下这个代理方法则是提供交互式动画:

  1. - (id<UIViewControllerInteractiveTransitioning>)navigationController:(UINavigationController *)navigationController
  2. interactionControllerForAnimationController:(id<UIViewControllerAnimatedTransitioning>)animationController
  3. {
  4. return self.popInteractionController;
  5. }

这两个组合起来使用。首先。我们须要有个动画:

  1. @interface WQPopAnimator : NSObject <UIViewControllerAnimatedTransitioning>
  2. @end
  1. #import "WQPopAnimator.h"
  2. @implementation WQPopAnimator
  3. - (NSTimeInterval)transitionDuration:(id <UIViewControllerContextTransitioning>)transitionContext
  4. {
  5. return 0.4;
  6. }
  7. - (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
  8. {
  9. UIViewController *toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];
  10. UIViewController *fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];
  11. [[transitionContext containerView] insertSubview:toViewController.view belowSubview:fromViewController.view];
  12. __block CGRect toRect = toViewController.view.frame;
  13. CGFloat originX = toRect.origin.x;
  14. toRect.origin.x -= toRect.size.width / 3;
  15. toViewController.view.frame = toRect;
  16. [UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
  17. CGRect fromRect = fromViewController.view.frame;
  18. fromRect.origin.x += fromRect.size.width;
  19. fromViewController.view.frame = fromRect;
  20. toRect.origin.x = originX;
  21. toViewController.view.frame = toRect;
  22. } completion:^(BOOL finished) {
  23. [transitionContext completeTransition:![transitionContext transitionWasCancelled]];
  24. }];
  25. }
  26. @end

其次。交互式动画是通过

  1. UIPercentDrivenInteractiveTransition

来维护的。在滑动过程中依据滑动距离来进行更新:

  1. } else if (panGesture.state == UIGestureRecognizerStateChanged) {
  2. CGPoint translation = [panGesture translationInView:view];
  3. CGFloat d = fabs(translation.x / CGRectGetWidth(view.bounds));
  4. [self.popInteractionController updateInteractiveTransition:d];

当手势结束时要做出收尾动作:

  1. } else if (panGesture.state == UIGestureRecognizerStateEnded) {
  2. if ([panGesture velocityInView:view].x > 0) {
  3. [self.popInteractionController finishInteractiveTransition];
  4. } else {
  5. [self.popInteractionController cancelInteractiveTransition];
  6. }
  7. self.popInteractionController = nil;
  8. }

相同地。自己定义的动画也会有上面提到的导航栏崩溃问题。也能够通过类似的方法来解决:

  1. - (void)navigationController:(UINavigationController *)navigationController
  2. didShowViewController:(UIViewController *)viewController
  3. animated:(BOOL)animated
  4. {
  5. if (viewController == self.navigationController.pushingViewController) {
  6. self.supportPan2Pop = YES;
  7. self.navigationController.pushingViewController = nil;
  8. }

补充:位于当前navgationController的第一个([0])viewController时须要设置手势代理,不响应。

iOS 7的手势滑动返回的更多相关文章

  1. 再谈iOS 7的手势滑动返回功能

    本文转载至 http://blog.csdn.net/jasonblog/article/details/28282147  之前随手写过一篇<使用UIScreenEdgePanGestureR ...

  2. 禁用ios7 手势滑动返回功能

    禁用ios7 手势滑动返回功能 版权声明:本文为博主原创文章,未经博主允许不得转载. 在有的时候,我们不需要手势返回功能,那么可以在页面中添加以下代码: - (void)viewDidAppear:( ...

  3. Android-通过SlidingMenu高仿微信6.2最新版手势滑动返回(二)

    转载请标明出处: http://blog.csdn.net/hanhailong726188/article/details/46453627 本文出自:[海龙的博客] 一.概述 在上一篇博文中,博文 ...

  4. Android-通过SlidingPaneLayout高仿微信6.2最新版手势滑动返回(一)

    近期更新了微信版本号到6.2.发现里面有个很好的体验,就是在第二个页面Activity能手势向右滑动返回,在手势滑动的过程中能看到第一个页面,这样的体验很赞,这里高仿了一下. 这里使用的是v4包里面的 ...

  5. iOS之手势滑动返回功能-b

    iOS中如果不自定义UINavigationBar,通过手势向右滑是可以实现返回的,这时左边的标题文字提示的是上一个ViewController的标题,如果需要把文字改为简约风格,例如弄过箭头返回啥的 ...

  6. iOS之手势滑动返回功能

    iOS中如果不自定义UINavigationBar,通过手势向右滑是可以实现返回的,这时左边的标题文字提示的是上一个ViewController的标题,如果需要把文字改为简约风格,例如弄过箭头返回啥的 ...

  7. iOS 应用全部添加滑动返回

    if ([self  class] == [HomeViewController class]||[self  class] == [ComprehensivefinanceViewControlle ...

  8. ios 侧边手势滑动返回 禁用/开启 功能

    // 禁用  返回手势       if ([self.navigationController respondsToSelector:@selector(interactivePopGestureR ...

  9. iOS开发解决页面滑动返回跟scrollView左右划冲突

    -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithG ...

随机推荐

  1. PHP过滤器 filter_has_var() 函数

    定义和用法 filter_has_var() 函数检查是否存在指定输入类型的变量. 如果成功则返回 TRUE,如果失败则返回 FALSE. 语法 filter_has_var(type, variab ...

  2. RHEL7网卡命名规则

    systemd 和 udev 引入了一种新的网络设备命名方式:一致网络设备命名(CONSISTENT NETWORK DEVICE NAMING).根据固件.拓扑.位置信息来设置固定名字,带来的好处是 ...

  3. Docker镜像分层技术

    Docker镜像管理 1.镜像分层技术 2.创建镜像 3.下载镜像到主机 4.删除镜像 5.上传镜像到registry docker镜像: 早在集装箱没有出现的时候,码头上还有许多搬运的工人在搬运货物 ...

  4. K-lord #2

    题目描述 还记得,高中数学联赛,2005,那道毒瘤题. 如果自然数的各位数字之和等于7,那么称为“吉祥数”.将所有“吉祥数”从小到大排成一列 $a_{1}$,$a_{2}$,$a_{3}$ ... , ...

  5. hdu 4819 Mosaic 树套树 模板

    The God of sheep decides to pixelate some pictures (i.e., change them into pictures with mosaic). He ...

  6. Spoj-ANTP Mr. Ant & His Problem

    Mr. Ant has 3 boxes and the infinite number of marbles. Now he wants to know the number of ways he c ...

  7. vue之二级路由

    router-view : <router-view> 组件是一个 functional 组件,渲染路径匹配到的视图组件 一 样式 1 在一个vue组件,<template>& ...

  8. 【Java工具】在代码头部加版权

    import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io ...

  9. 玩转css样式选择器----当父元素只有一个子元素时居中显示,多个水平排列

  10. centos 7 配置多个IP地址

    centos 7 配置多个IP地址 #打开网络配置文件 cd /etc/sysconfig/network-scripts/ vim ifcfg-eno167 找到IPADDR的位置,在下面再增加需要 ...