我刚刚将我的Swift 1.2代码迁移到了Swift 2.0。
此代码以前可以正常工作。但是现在有一个错误说
Redundance Conformance of User to Protocol PFSubclassing (Swift 2.0)
可能是什么原因造成的?
最佳答案
PFUser符合PFSubclassing协议(protocol)。因此,无需在子类中遵循PFSubclassing。
删除PFSubclassing将起作用。
** LCUser类:PFUSer {
//数据成员
} **
关于ios - 用户到协议(protocol)PFSubclassing(Swift 2.0)的冗余一致性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32457117/