Invalid properties in Xcode 4

I have a basic data model with some objects created. I have established some relationships without inverse relationships. I do not want to have an inverse relationship, is there a way to suppress these warnings?

I am using iOS 5 and Xcode 4.

+4
source share
1 answer

To turn off the warning about this, find "momc" in the build settings and you will find the settings MOMC_NO_INVERSE_RELATIONSHIP_WARNINGS . It should be.

However, to ensure the integrity of kernel data, it is better to use them. Here is a question that answers why: Should the opposite be true for each data core?

+6
source

Source: https://habr.com/ru/post/1397200/


All Articles