Hi
I think swift 2 gives an error for this code
extension PFObject : Equatable { }
public func ==(lhs: PFObject, rhs: PFObject) -> Bool {
return lhs.objectId == rhs.objectId
}The error I m receiving : Redundant conformance of 'PFObject' to protocol 'Equatable'
I m trying to perform equatable for PFObject but this line gives error.
Any solution?
Thank you