Как заблокировать жест Swipe UIPageViewController в Swift? - PullRequest
0 голосов
/ 10 июля 2019

как заблокировать жест пальцем UIPageViewController?

pageViewController.view.isUserInteractionEnabled = false

private func setupPageController() {
    pageViewController = UIPageViewController(transitionStyle:.pageCurl, navigationOrientation: .horizontal, options: nil)
    pageViewController.delegate = self
    pageViewController.dataSource = nil
    pageViewController.view.isUserInteractionEnabled = false



    viewControllers = [
        storyboard!.instantiateViewController(withIdentifier: "MyProfile"),
        storyboard!.instantiateViewController(withIdentifier: "Sync"),
        storyboard!.instantiateViewController(withIdentifier: "Assistance"),
        storyboard!.instantiateViewController(withIdentifier: "ChangePassword"),
        storyboard!.instantiateViewController(withIdentifier: "ContactUs"),
        storyboard!.instantiateViewController(withIdentifier: "SpeedTest"),
        storyboard!.instantiateViewController(withIdentifier: "Help")

    ]

    pageViewController.setViewControllers([viewControllerAtIndex(0)!], direction: .forward, animated: true, completion: nil)
    pageViewController.dataSource = self



    addChildViewController(pageViewController)
    view.addSubview(pageViewController.view)

    pageViewController!.view.frame = CGRect(x: 0, y:110, width: view.bounds.width, height: view.bounds.height - 70)//view.bounds
    pageViewController.didMove(toParentViewController: self)

    // Add the page view controller's gesture recognizers to the view controller's view so that the gestures are started more easily.

    // view.gestureRecognizers = pageViewController.gestureRecognizers
}

1 Ответ

0 голосов
/ 10 июля 2019

Вы можете использовать приведенное ниже расширение, чтобы включить или отключить SwipeGesture

extension UIPageViewController {

    func enableSwipeGesture() {
        for view in self.view.subviews {
            if let subView = view as? UIScrollView {
                subView.isScrollEnabled = true
            }
        }
    }

    func disableSwipeGesture() {
        for view in self.view.subviews {
            if let subView = view as? UIScrollView {
                subView.isScrollEnabled = false
            }
        }
    }
}
...