滑动返回仅适用于屏幕边缘?

时间:2015-10-02 18:55:25

标签: ios swift storyboard uistoryboard ios9

我的滑动返回功能有效但仅适用于屏幕边缘。如何在屏幕上的任何位置使用它?

3 个答案:

答案 0 :(得分:8)

实际上,在UINavigationController子类上进行操作非常容易,而无需干预每个推送的UIViewController子类。还尊重内置的“从边缘滑动”状态(因此,当有意禁用它时,新手势也将被禁用):

import UIKit

class NavigationController: UINavigationController {
    override func viewDidLoad() {
        super.viewDidLoad()
        setupFullWidthBackGesture()
    }

    private lazy var fullWidthBackGestureRecognizer = UIPanGestureRecognizer()

    private func setupFullWidthBackGesture() {
        // The trick here is to wire up our full-width `fullWidthBackGestureRecognizer` to execute the same handler as
        // the system `interactivePopGestureRecognizer`. That's done by assigning the same "targets" (effectively
        // object and selector) of the system one to our gesture recognizer.
        guard
            let interactivePopGestureRecognizer = interactivePopGestureRecognizer,
            let targets = interactivePopGestureRecognizer.value(forKey: "targets")
        else {
            return
        }

        fullWidthBackGestureRecognizer.setValue(targets, forKey: "targets")
        fullWidthBackGestureRecognizer.delegate = self
        view.addGestureRecognizer(fullWidthBackGestureRecognizer)
    }
}

extension NavigationController: UIGestureRecognizerDelegate {
    func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
        let isSystemSwipeToBackEnabled = interactivePopGestureRecognizer?.isEnabled == true
        let isThereStackedViewControllers = viewControllers.count > 1
        return isSystemSwipeToBackEnabled && isThereStackedViewControllers
    }
}

答案 1 :(得分:2)

Apple说rename

  

<强> interactivePopGestureRecognizer

     

手势识别器负责弹出顶视图控制器   离开导航堆栈。 (只读)

     

@property(非原子,只读)UIGestureRecognizer   * interactivePopGestureRecognizer

     

导航控制器在其视图上安装此手势识别器   并使用它从导航中弹出最顶层的视图控制器   堆。您可以使用此属性来检索手势识别器   并将其与用户中其他手势识别器的行为联系起来   接口。将手势识别器绑在一起时,请确保   他们同时认出他们的姿势,以确保你的   手势识别器有机会处理该事件。

因此here库可自定义UIPanGestureRecognizer

查看库SloppySwiper,通过使用UIPanGestureRecognizer并重新创建默认动画来实现此目的。

SloppySwiper:- UINavigationController委托允许从屏幕上的任何位置开始向后滑动手势,例如instagram。

可以找到此库的

用法 SloppySwiper

Cocoapods : - pod&#34; SloppySwiper&#34;

我在ios7及以上版本上测试了这个库。它就像一个魅力。

答案 2 :(得分:0)

滑动返回是推送/显示视图控制器的默认行为。它工作在屏幕的左边缘(默认情况下)。如果要从屏幕的任何部分向后滑动,则应将UISwipeGestureRecognizer添加到视图中:
    name