Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save InstaRobot/85e6689a67b38fd36128907ed4562c93 to your computer and use it in GitHub Desktop.

Select an option

Save InstaRobot/85e6689a67b38fd36128907ed4562c93 to your computer and use it in GitHub Desktop.
- (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