Just a simple question, I hope.
When creating an array using alloc and init, i.e. without specifying 'initWith...' or preloading it with objects, is that array automatically set to nil?
For example:
NSMutableArray *buffetItems = [[NSMutableArray alloc] init];
And would the same apply when you use the class method array?
NSMutableArray *buffetItems = [NSMutableArray array];