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

后端 未结 6 1591
自闭症患者
自闭症患者 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:16

    For only one view, I don't know the way... But I use the next code to disable fully the swipe gesture:

    in your AppDelegate.m

    if ([[UIDevice currentDevice].systemVersion floatValue] >= 7){
            self.navigationController.interactivePopGestureRecognizer.enabled = NO;
        }
    

提交回复
热议问题