Swift 4 "This class is not key value coding compliant"
Swift 4 "This class is not key value coding compliant"
我有一个 Swift 库,它严重依赖于 NSObject
的 obj.valueForKey()
。
迁移到 Swift 4 后,我发现这些调用总是因错误 "this class is not key value coding-compliant for the key..." 而崩溃,除非我要查找的 属性 是用 [=14= 声明的].
现在是否必须使用 @objc
声明属性才能使用此方法找到它们?有其他选择吗?
当您执行迁移时 Xcode 询问了 @objc
推理,您可能选择了新类型而不是 Swift3。
可能的解决方案:
使用@objc
根据需要在每个方法上使用 @objc
,而不是整个 class。
使用@objcMembers
您可以在 class 上使用 @objcMembers
。
Applying @objcMembers attribute to a class implicitly adds the @objc attribute to all of its Objective-C compatible members.
Writing Swift Classes and Protocols with Objective-C Behavior
请记住:因为应用@objc 属性会增加应用程序的编译大小并对性能产生不利影响,只有在每个成员需要时才在声明上应用@objcMembers 属性应用@objc 属性.
将推理切换为旧行为
您还可以在以下位置更改项目的行为:
Build Settings
> Swift 3 @objc Inference
> On
/Off
相关问题:
- The use of Swift 3 @objc inference in Swift 4 mode is deprecated?
我有一个 Swift 库,它严重依赖于 NSObject
的 obj.valueForKey()
。
迁移到 Swift 4 后,我发现这些调用总是因错误 "this class is not key value coding-compliant for the key..." 而崩溃,除非我要查找的 属性 是用 [=14= 声明的].
现在是否必须使用 @objc
声明属性才能使用此方法找到它们?有其他选择吗?
当您执行迁移时 Xcode 询问了 @objc
推理,您可能选择了新类型而不是 Swift3。
可能的解决方案:
使用@objc
根据需要在每个方法上使用 @objc
,而不是整个 class。
使用@objcMembers
您可以在 class 上使用 @objcMembers
。
Applying @objcMembers attribute to a class implicitly adds the @objc attribute to all of its Objective-C compatible members.
Writing Swift Classes and Protocols with Objective-C Behavior
请记住:因为应用@objc 属性会增加应用程序的编译大小并对性能产生不利影响,只有在每个成员需要时才在声明上应用@objcMembers 属性应用@objc 属性.
将推理切换为旧行为
您还可以在以下位置更改项目的行为:
Build Settings
> Swift 3 @objc Inference
> On
/Off
相关问题:
- The use of Swift 3 @objc inference in Swift 4 mode is deprecated?