I came across the following:
NSArray *array = @[object1, object2];
It seems to be creating an NSArray, but is this array instance an autoreleased object, or must I release it?
I came across the following:
NSArray *array = @[object1, object2];
It seems to be creating an NSArray, but is this array instance an autoreleased object, or must I release it?