Ios swift – Why does CustomStringConvertible not work for Data?
I have the following: extension Data : CustomStringConvertible { var description : String { return base64EncodedString() } } This shows a warning: Conformance of 'Data' to protocol 'CustomStringConvertible' was already stated in the type's module 'Foundation' And because of this…