I have the following code here that won\'t run on ARC since it combines Objective-C objects in structs:
struct SingleToManyRelation { id singleObject; NS
Give your objects the __unsafe_unretained attribute and ARC will stop complaining (but keep in mind that they aren't retained! So you have to somehow store a strong relationship to them, if you don't want to lose them)
__unsafe_unretained