Quick core data question.
I am trying to link core data objects in a many-to-many relationship:
- Comments (has a property called commentHashTags)
- Hashtags (has a property called hashTagComments)
In a one to many relationship I would get away doing:
- commentObject.commentHashTag = hashTagObject
Is there a way to do something similar in a many-to-many relationship without having to create a class of core data objects in the middle (commentHashTagRelationship).
Looking forward to any help, I am very reluctant to update my core data model since it would force our existing users to re-install their clients.