美文网首页
iOS开发禁止系统的滑动返回手势

iOS开发禁止系统的滑动返回手势

作者: BelieveLife | 来源:发表于2018-07-22 21:44 被阅读0次
    id traget = self.navigationController.interactivePopGestureRecognizer.delegate;
    UIPanGestureRecognizer * pan = [[UIPanGestureRecognizer alloc]initWithTarget:traget action:nil];
    [self.view addGestureRecognizer:pan];

或者

    self.navigationController.interactivePopGestureRecognizer.enabled = NO;

相关文章

网友评论

      本文标题:iOS开发禁止系统的滑动返回手势

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