Does Objective-C support blocks "a la Smalltalk"?

In Smalltalk, blocks are similar to "closures" or "lambda-expressions" or "nameless functions" found in other languages.

link|improve this question

1  
See this question for some additional links: stackoverflow.com/questions/2516325/futures-for-objective-c – Frank Shearar Oct 14 '10 at 6:23
Excellent link, thanks! – Fernando Oct 14 '10 at 10:25
feedback

2 Answers

up vote 10 down vote accepted

Yes: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Blocks/Articles/00_Introduction.html

Out of the box, they're only supported in the version of Objective-C 2.0 that comes with XCode 3.2 or later. This means you'll need Snow Leopard if you want to use the official build tools. A potential work-around for 10.5 is described here: http://thirdcog.eu/pwcblocks/#leoiphone

link|improve this answer
2  
But there are distinct in one aspect: the way you return from it. – mathk Oct 15 '10 at 17:40
(Just a note) Corresponding version of iOS also support C-Blocks feature. – Eonil Jun 13 '11 at 4:40
feedback

Yep, take this example:

[[myString componentsSeparatedByString:@"\n"] enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSString *line = (NSString *)obj;
    //do what your going to do with line...
}];
link|improve this answer
Am I interpreting this code correctly? Can ObjC handle arbitrarily typed blocks, or only explicitly typed blocks? – mcandre Sep 27 '11 at 23:49
1  
@mcandre objective-c is not a strongly-typed language. You can pass an id or void * and cast it to whatever type you want. – Richard J. Ross III Oct 10 '11 at 17:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.