Created
February 22, 2015 13:21
-
-
Save flexaddicted/f2e7c606de96ab6a58c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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