I have the following code here that will not work on ARC, since it combines Objective-C objects into structs:
struct SingleToManyRelation {
id singleObject;
NSSet* manyObjects;
}
I know this is reminiscent of Core Data, but it isn’t;) I'm just looking for a solution to implement something like this without creating a “container” class.
Thanks in advance for your advice, Christian
source
share