Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Tried to pop to a view controller that doesn't exist.'
使用此代碼時popToViewController不工作,但popViewController確實
self?.navigationController?.popToViewController(vc2, animated: true)
但是,當我試圖簡單地彈出其工作
self?.navigationController?.popViewController(animated: true)
我推這個的viewController像
navigationController?.pushViewController(vc2, animated: true)
我不確定,pushi一個視圖意味着當我嘗試做popToViewController
。它有一個頂部的視圖。請幫助
可能兩個對象在推送和彈出時都不相同。您能否展示您推送的地方以及您流行的地方的代碼。 –