I have a core data model with some entities set up. I have set up some relations without inverse relations. I don’t want to have inverse relations, is there a way to surpress those warnings?
I am using iOS 5 and Xcode 4.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To turn off the warning about this, search for “momc” in Build Settings and you will find
MOMC_NO_INVERSE_RELATIONSHIP_WARNINGSsettings. That should be it.However, it is better for Core Data integrity to use them. Here’s a question that has an answer why: Does every Core Data Relationship have to have an Inverse?