Can +[NSArray arrayWithObjects]
and the newer, literal syntax produce different results?
Is there any chance that the newer syntax produces different results? Example case is 3 literal strings:
return [NSArray arrayWithObjects:@"one", @"two", @"three", nil];
versus
return @[@"one", @"two", @"three"];
- Is it possible to see the macro code for the literal syntax, and if so, where? (please correct me if this question makes no sense)