美文网首页iOS开发知识小集
ios禁止左划返回手势

ios禁止左划返回手势

作者: frola_ | 来源:发表于2018-01-23 14:43 被阅读116次

    用到UIGestureRecognizerDelegate代理方法
    直接加到viewDidLoad

    id traget = self.navigationController.interactivePopGestureRecognizer.delegate;
    UIPanGestureRecognizer * pan = [[UIPanGestureRecognizer alloc]initWithTarget:traget action:nil];
    [self.view addGestureRecognizer:pan];
    

    相关文章

      网友评论

        本文标题:ios禁止左划返回手势

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