Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to have blocks as properties using the standard property syntax?

Are there any changes for ARC?

share|improve this question
Thanks for the answer but there is no documentation on that! Plus I don't even know what a block actually is! A function pointer? An object? What is the syntax? – gurghet Oct 14 '10 at 17:03
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
4  
You shouldn't use them If you dont know what they are :) – Richard J. Ross III Oct 14 '10 at 18:30
3  
@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 '12 at 21:40
show 3 more comments

2 Answers

up vote 99 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

share|improve this answer
19  
the block should be a copy property, not assign. Blocks are objects. – Joshua Weinberg Oct 14 '10 at 17:12
7  
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
8  
@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
5  
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
1  
@Joshua Weinberg I would have thought that it is the responsibility of the code creating the block (on the stack) to make a copy before handing it to the property setter method. Not the properties responsibility to make a copy of the block by declaring itself with an attribute of "copy". In other words, making the property "copy" is an option. Thoughts? – erikprice Aug 23 '11 at 12:14
show 14 more comments

Richard's answer is great, here is a concise version.

@interface MyClass : NSObject
@property (nonatomic, copy) void (^simpleCompletionBlock)(void);
@end

Assuming:

  • You are using xCode > 4.4 and have synthesise by default enabled (otherwise just @synthesise simpleCompletionBlock)
  • You are using ARC (otherwise [_simpleCompletionBlock release] in dealloc).
share|improve this answer
2  
With xCode 4.4 or newer you dont need to synthesize. That will make it even more concise. Apple Doc – Eric Nov 8 '12 at 4:28
wow, I didn't know that, thanks! ... Although I often do @synthesize myProp = _myProp – Robert Nov 8 '12 at 8:04
1  
+1 for brevity. – Snow Crash Nov 9 '12 at 11:53
3  
@Robert: You are in luck again, because without putting @synthesize the default is what you are doing @synthesize name = _name; stackoverflow.com/a/12119360/1052616 – Eric Nov 12 '12 at 3:58
ARC is not a condition for the example above. Works fine with non-ARC code as well. – Charlie Monroe Mar 31 at 20:28
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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