快速"this class is not key value coding-compliant for the key"中的图像选择器出错



在尝试在 Swift 中创建图像选择器时,用户按下按钮并选择图像,我遇到了此错误:

'NSUnknownKeyException', reason: '[<MemeGenerator.ViewController 0x7ff3805a6f10> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key selectedImage.'

我的视图控制器类在这里

知道出了什么问题吗?如有必要,我可以提供更多文件。

通常,该消息表示您在 IB(接口生成器)中连接了 IBOutlet 链接,在代码中定义的控件和定义的 IBOutlet 之间,然后删除了出口。在运行时,当系统尝试挂接链接时,它会失败。

在IB的视图控制器中查看所有出口(以及IBActions),并查找断开的链接。

相关内容

  • 没有找到相关文章

最新更新