Swipe back - interactivePopGestureRecognizer not working

后端 未结 2 1030
难免孤独
难免孤独 2021-02-05 09:41

I have screens like this photo. HomeViewController will push to maintabbar, and a tabbar item will push to detailScreen. Why swipe back not working. I think it is defa

2条回答
  •  遥遥无期
    2021-02-05 09:54

    I have similar problem & got fixed using method from this answer

    Simply, did you call

    [super viewWillAppear:animated];
    

    when overriding

    - (void)viewWillAppear:(BOOL)animated {
        [super viewWillAppear:animated];
        // your other codes goes on
    }
    

提交回复
热议问题