While an existing transition or presentation is occurring; the navigation stack will not be updated

前端 未结 6 1307
孤城傲影
孤城傲影 2021-02-01 16:36

I have encountered this warning:

pushViewController:animated: called on while an existing transition or presentation is occurring; the navigation stack

6条回答
  •  情书的邮戳
    2021-02-01 16:42

    Anyone needs go back to PreviousVC Use this code. Swift5

        dismiss(animated: true) {
            // If you need call someFunction()
            self.someFunction()
            self.navigationController?.popViewController(animated: true)
        }
    

提交回复
热议问题