I have a "Record" NSManagedObject
class and "Title" NSManagedObject
,
Record object have 2 properties, title and laTitle
both are of type "Title" ManagedObject.
and also need this "Title" object as other NSManagedObjects
which have no relation to the "Record" object, so I can't use relationship as "title" is independant of "Record" object.
Do I have any other way than saving the Title Object as "Binary data" in Record Object and other Objects. Something like having to-many relationship without inverse relationship.