Possible Duplicate:
Does every Core Data Relationship have to have an Inverse?
I have the following entities with the relationships:
A CombinedSH
must have a Subject
and a StudyHour
.
A Subject
must NOT have a CombinedSH
.
A StudyHour
must NOT have a CombinedSH
.
In my app, it does not make sense that a Subject
/ a StudyHour
will have a CombinedSH
.
The problem is that Xcode gives me the following warnings:
warning: Misconfigured Property: CombinedSH.studyHour should have an inverse.
warning: Misconfigured Property: CombinedSH.subject should have an inverse.
So Xcode says that there should be an inverse - but in my app it doesn't make sense. What should I do?