我正在尝试在我的项目中实现BWWalkthrough。但是我得到一个错误说明
Unknown class _TtC20BWWalkthroughExample27BWWalkthroughViewController in Interface Builder file.
Could not cast value of type 'UIViewController' (0x195bca580) to 'AppName.BWWalkthroughViewController' (0x10042c3a0).
(lldb)
它指向下面的代码let walkthrough = stb.instantiateViewControllerWithIdentifier("walk") as! BWWalkthroughViewController
我不知道为什么会这样。任何帮助,将不胜感激。也可以随时从我的项目中请求更多代码。
最佳答案
您的 Storyboard似乎没有链接到BWWalkthroughViewController
。找到 View Controller 应该在哪里BWWalkthroughViewController
,并检查它是否为ojit_code。
关于ios - 无法转换类型为 'UIViewController'的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32038385/