robbiehanson / XMPPFramework

An XMPP Framework in Objective-C for Mac and iOS
Other
5.91k stars 2.09k forks source link

CoreData: fault #1184

Open muhammadrizwananjum opened 4 years ago

muhammadrizwananjum commented 4 years ago

CoreData: fault: One or more models in this application are using transformable properties with transformer names that are either unset, or set to NSKeyedUnarchiveFromDataTransformerName. Please switch to using "NSSecureUnarchiveFromData" or a subclass of NSSecureUnarchiveFromDataTransformer instead. At some point, Core Data will default to using "NSSecureUnarchiveFromData" when nil is specified, and transformable properties containing classes that do not support NSSecureCoding will become unreadable.

pixelskull commented 3 years ago

I got this message to, when initializing XMPPvCardCoreDataStorage like so:

let storage = XMPPvCardCoreDataStorage(inMemoryStore: ())
vCardModule = XMPPvCardTempModule(vCardStorage: storage!, dispatchQueue: .main)

Is there a solution for this problem?