Hi,
When creating a new contact on MacOS Im getting this new error causing my app to crash, on my app only after updating my machine to Ventura 13.0.
The last error before (lldb) is "An ABCDRecord is being saved without having a container assignment. Assigning the contact to <CNCDContainer 0x6000039b51a0 ab>. Please remember to assign contacts to containers to avoid recurring container lookup and contact re-validation costs."
When saving a new contact I’m using
saveRequest.add(contact, toContainerWithIdentifier: nil)
do {
try contactsStore.execute(saveRequest)
**
I guess it does not like the ni
l.
Am I supposed to add to a particular container, like iCloud?
Documentation says to set it to nil - https://developer.apple.com/documentation/contacts/cnsaverequest/1403036-add
Even with the most basic example from https://developer.apple.com/documentation/contacts the save request falis.