关闭ios9 屏幕边侧手势

来源:互联网 发布:邪恶漫画之知子伯母 编辑:程序博客网 时间:2024/06/05 07:35

//禁止侧滑手势和tableView同时滑动


  // 禁用 iOS7 返回手势

    if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {

        self.navigationController.interactivePopGestureRecognizer.enabled = NO;

    }


0 0