标签: swift swift4
当我尝试使用swift 3方式时,我无法符合NSCopying协议, 我的代码是:
public func copy(with zone: NSZone? = nil) -> Any { return type(of:self).init(self) }
但是出现错误: Cannot call value of non-function type 'ProductType'
Cannot call value of non-function type 'ProductType'
这是什么问题?
答案 0 :(得分:2)
我刚刚找到解决方案,更改了以下功能:
{{1}}