Warning: Attempt to dismiss from view controller while a presentat

今天同事mode 模态时候 遇到了这个警告。在我苦思冥想后 把这个bug 解决了。

  [self dismissViewControllerAnimated:YES completion:nil]; 想要执行这个函数的初始化下在下面的方法里!

你试试吧!如果帮助你解决了问题,请给个赞吧!

-(void)viewDidDisappear:(BOOL)animated

{

    [self.backButton addTarget:self action:@selector(backButtonAction) forControlEvents:UIControlEventTouchUpInside];

}


你可能感兴趣的:(ios)