Created
May 31, 2016 08:45
-
-
Save InstaRobot/85e6689a67b38fd36128907ed4562c93 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
| - (void)enumerateObjectsUsingBlock:(void (^) | |
| (id obj, NSUInteger idx, BOOL *stop))block | |
| // А теперь пример реализации: | |
| [array enumerateObjectsUsingBlock: | |
| ^(NSString *string, NSUInteger index, BOOL *stop) { | |
| NSLog(@"I found %@", string); | |
| }]; | |
| // Так мы можем безболезнено перебирать огромные массивы )))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment