Anyone have a link to a coredata relationship tutorial for basic create,retrieve,update,delete type operations?
I have two entities set up, entity A and entity B.
I have the relationships and inverse relationships set up between A and B.
A can have many B. B can have only one A.
Basically the tasks I need to do:
1) When adding B to A, I need to make sure if B doesn't already exist in A (how can I test this?) 2) How do you create B and then save it to A?
TIA