Monday, 26 August 2013

Abusing Objective-C Shorthand Notation

Abusing Objective-C Shorthand Notation

Other than giving old school Objective-C programmers heart attacks, are
there any other performance implications to doing this:
NSMutableArray *derp = @[].mutableCopy
Versus this:
NSMutableArray *derp = [[NSMutableArray alloc] init];

No comments:

Post a Comment