Is there a way to share CoreData data containing complex relationships easily by file? And also to create them easily after receiving the file?
The application runs on a secure iPad without iCloud, so CloudKit is not an option.
I'd really like to keep the file principle, so that data can be shared via Airdrop, e-mail, file transfer, etc.
The ideal would be :
data = myNSManagedObject.toJSON()
file = createFile(data)
share file
receive file
data = file.data.decodeJSON()
myNSManagedObjectContext.add(data)
All this without having to browse all the objects to create them individually
Thx