美文网首页iOS
iOS-单个页面禁用右滑返回

iOS-单个页面禁用右滑返回

作者: 奋斗的蜗牛 | 来源:发表于2017-01-10 17:32 被阅读758次
    - (void)viewWillAppear:(BOOL)animated
    {
        [super viewWillAppear:animated];
        //禁用右滑返回
        self.navigationController.interactivePopGestureRecognizer.enabled = NO;
    }
    - (void)viewWillDisappear:(BOOL)animated
    {
        [super viewWillDisappear:animated];
        //恢复右滑返回
        self.navigationController.interactivePopGestureRecognizer.enabled = YES;
    }
    

    相关文章

      网友评论

        本文标题:iOS-单个页面禁用右滑返回

        本文链接:https://www.haomeiwen.com/subject/ltxlbttx.html