NSArray von schwachen Verweisen (__unsafe_unretained) auf Objekte unter ARC
Ich muss schwache Verweise auf Objekte in einem NSArray speichern, um Aufbewahrungszyklen zu verhindern. Ich bin mir nicht sicher, welche Syntax ich verwenden soll. Ist das der richtige Weg? Foo* foo1 = [[Foo alloc] init]; Foo* foo2 = [[Foo alloc] init]; __unsafe_unretained Foo* weakFoo1 = foo1;...