What kind of object does @[obj1, obj2] create?

Viewed 1375

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?

2 Answers
Related