美文网首页
iOS开发-在某个页面禁用侧滑返回功能

iOS开发-在某个页面禁用侧滑返回功能

作者: 吃不胖的瘦子呀 | 来源:发表于2020-03-27 11:14 被阅读0次
- (void)viewDidLoad {
    [super 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/phqluhtx.html