Is it possible to do use blocks as properties using standard property syntax?

Are there any changes for ARC?

link|improve this question

70% accept rate
4  
Create a test project, and try for yourself! – Richard J. Ross III Oct 14 '10 at 16:57
3  
@gurghet: If you don't know what a block is, why would you consider using it as property? – KennyTM Oct 14 '10 at 17:06
4  
If you don't know what it is, how do you know that it would be very handy? – Stephen Canon Oct 14 '10 at 17:14
3  
You shouldn't use them If you dont know what they are :) – Richard J. Ross III Oct 14 '10 at 18:30
1  
@Moshe here are some reasons that come to mind. Blocks are easier to implement than a full delegate class, blocks are lightweight, and you have access to variables that are in the context of that block. Event Callbacks can be done effectively using blocks (cocos2d uses them almost exclusively). – Richard J. Ross III Feb 3 at 21:40
show 5 more comments
feedback

1 Answer

up vote 48 down vote accepted

Here's an example of how you would accomplish such a task:

#import <Foundation/Foundation.h>
typedef int (^IntBlock)();

@interface myobj : NSObject
{
    IntBlock compare;
}

@property(readwrite, copy) IntBlock compare;

@end

@implementation myobj

@synthesize compare;

- (void)dealloc 
{
   // need to release the block since the property was declared copy. (for heap
   // allocated blocks this prevents a potential leak, for compiler-optimized 
   // stack blocks it is a no-op)
   // Note that for ARC, this is unnecessary, as with all properties, the memory management is handled for you.
   [compare release];
   [super dealloc];
}
@end

int main () {
    @autoreleasepool {
        myobj *ob = [[myobj alloc] init];
        ob.compare = ^
        {
            return rand();
        };
        NSLog(@"%i", ob.compare());
        // if not ARC
        [ob release];
    }

    return 0;
}

Now, the only thing that would need to change if you needed to change the type of compare would be the typedef int (^IntBlock)(). If you need to pass two objects to it, change it to this: typedef int (^IntBlock)(id, id), and change you block to:

^ (id obj1, id obj2)
{
    return rand();
};

I hope this helps.

EDIT March 12, 2012:

For ARC, there are no specific changes required, as ARC will manage the blocks for you as long as they are defined as copy. You do not need to set the property to nil in your destructor, either.

For more reading, please check out this document: http://clang.llvm.org/docs/AutomaticReferenceCounting.html

link|improve this answer
12  
the block should be a copy property, not assign. Blocks are objects. – Joshua Weinberg Oct 14 '10 at 17:12
Oh? I thought they were a special C-struct from the article here: thirdcog.eu/pwcblocks – Richard J. Ross III Oct 14 '10 at 17:16
5  
Blocks are most certainly objects in the Obj-C runtime. You need to copy them off the stack using Block_copy or [block copy] to make them actually survive the stack frame. – Joshua Weinberg Oct 14 '10 at 17:17
6  
@Richard: I'd recommend reading the full blocks spec, its only a couple of pages long and will go over how blocks work in C, C++ and Obj-C. Like in Obj-C blocks will retain objects that are in their scope, in C++ it behaves differently and I believe it actually creates a new object with the copy constructor, except when objects are perpended with __block...So yea, read the spec. – Joshua Weinberg Oct 14 '10 at 17:24
1  
The typedef is clean and useful when the function signature is complex, but not strictly necessary. Here, you'd do "int (^compare)();" which isn't particularly complex. – lilbyrdie Jun 18 '11 at 16:14
show 11 more comments
feedback

Your Answer

 
or
required, but never shown

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