Skip to content

Instantly share code, notes, and snippets.

@flexaddicted
Created February 22, 2015 13:21
Show Gist options
  • Select an option

  • Save flexaddicted/f2e7c606de96ab6a58c2 to your computer and use it in GitHub Desktop.

Select an option

Save flexaddicted/f2e7c606de96ab6a58c2 to your computer and use it in GitHub Desktop.
// how to use NSArray+FAPMap category
NSArray* toMapArray = @[@1, @2, @3];
NSArray* mappedArray = [toMapArray fap_map:^id(id item) {
NSNumber* itemAsNumber = (NSNumber*)item;
int resultValue = [itemAsNumber integerValue] * 3;
return @(resultValue);
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment