Possible Duplicate:
Apple LLVM 4.0 new features on Xcode 4.4 (Literals)
I am using Xcode 4.5 and would like to use the new syntax to adding objects to arrays, in my old code I have:
NSArray *array = [[NSArray alloc] initWithObjects: rabbit, chicken, owl, nil];
What is the correct way to use the new syntax that is being introduced, for example:
@[rabbit, chicken, owl]
TIA.