我在使用此代码的操作方法中推动视图控制器时崩溃

 let vc = self.storyboard?.instantiateViewControllerWithIdentifier("addProperty") as! ViewProfile
 self.navigationController?.pushViewController(vc, animated: false)


请问是什么原因?

最佳答案

我知道了。我错过了第二个视图控制器的“ AddNewPropery”类名称。将“ ViewProfile”替换为“ AddNewPropery”解决了我的问题。

 let vc = self.storyboard?.instantiateViewControllerWithIdentifier("addProperty") as! AddNewPropery
self.navigationController?.pushViewController(vc, animated: false)

关于ios - 无法将类型'ProjectName.AddNewPropery'(0x10fa2edf0)的值快速转换为'ProjectName.ViewProfile',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35592493/

10-09 20:59