How to disable back gesture in iOS 7 for only one view

后端 未结 6 1598
自闭症患者
自闭症患者 2020-12-18 06:26

I am trying to disable the back gesture for my view controller using the following set of code.

In FirstViewController.m, I\'m setting the delegate of <

6条回答
  •  情话喂你
    2020-12-18 07:08

    This just worked for me in xCode 7:

    override func viewDidAppear(animated: Bool) {
            super.viewDidAppear(animated)
            self.navigationController!.interactivePopGestureRecognizer!.enabled = false
    
    }
    override func viewWillDisappear(animated: Bool) {
        super.viewDidDisappear(animated)
        self.navigationController!.interactivePopGestureRecognizer!.enabled = true
    }
    

提交回复
热议问题