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

I'd like to store objective-c block in a property for later use. I wasn't sure how to do it so I googled a bit and there is very little info about the subject. But I've managed to find the solution eventually and I've thought that it might be worth sharing for other newbies like me.

Initially I've thought that I would need to write the properties by hand to use Block_copy & Block_release.

Fortunately I've found out that blocks are NSObjects and - copy/- release is equivalent to Block_copy/Block_release. So I can use @property (copy) to auto generate setters & getters.

share|improve this question
Possible duplicate of Can I use Objective-C blocks as properties? This question is more recent than the one there. – Richard J. Ross III Mar 12 '12 at 14:28

3 Answers

up vote 48 down vote accepted
typedef void(^MyCustomBlock)(void);

@interface MyClass : NSObject {

}
@property (nonatomic, copy) MyCustomBlock customBlock;
@end

@implementation MyClass
@synthesize customBlock;

- (void) dealloc {
  [customBlock release];
  [super dealloc];
}

@end

MyClass * c = [[MyClass alloc] init];
[c setCustomBlock:^{
  NSLog(@"hello.....");
}];

[c customBlock]();  //or c.customBlock()
[c release];
share|improve this answer
that is cool, I was looking for a way to store a block... more of a curiosity than a business need. – Grady Player Jul 19 '11 at 19:59
Anyone know why for blocks you should use (nonatomic, copy) and not (nonatomic,retain)? Typically retain is used and I can't find anywhere that explains why to use copy for blocks. – Steve Potter Feb 7 '12 at 21:28
@StevePotter really? I found a couple of relevant questions here on SO in a matter of seconds. For example: stackoverflow.com/a/4667422/115730 and the comments to stackoverflow.com/a/3935677/115730 – Dave DeLong Feb 7 '12 at 22:38
6  
Yes Dave, really. I can search also and saw those too. Explanations were vague like you use copy "to make them actually survive the stack frame." I figured that retaining the object would also do that. None explained how blocks are stack allocated. However, a comment did link to an article - cocoawithlove.com/2009/10/how-blocks-are-implemented-and.html that explained it well. See under "Blocks are slightly weird objects". So thank you! – Steve Potter Feb 10 '12 at 21:12

Alternatively, without the typedef

@property (copy, nonatomic) void (^selectionHandler) (NSDictionary*) ;

share|improve this answer
5  
To clarify, as the syntax is so opaque, this is a block property named "selectionHandler" that takes an NSDictionary* argument and returns void. – Christopher Pickslay Mar 30 '12 at 19:24
I don't think it is so hard to read, but I agree that it looks nicer with the typedef. I tend to write a bunch of typedefs for the parameters I want to usually pass: PFObjectBlock, PFStringBlock, PFArrayBlock, PFErrorBlock, etc. – Besi Jul 20 '12 at 13:34
would id, SEL, IMP allow further simplifications? – dklt Sep 20 '12 at 3:00

You can find a very good explanation of this in WWDC 2012 session 712 starting in page 83. The correct way of saving a block under ARC is the following:

@property(strong) my_block_type work;

Be careful with the retain cycles. A good way to solve is set the block to nil when you do not need it anymore:

self.work = nil;
share|improve this answer
only with ARC. Under MRC this is wrong. But copy works correctly under both MRC and ARC – newacct Aug 2 '12 at 18:24
I do not think that copy will work well in all the cases in MRC but maybe in most of them – Jorge Perez Lahera Aug 3 '12 at 9:28
copy is precisely the right way to do it in MRC. – newacct Aug 3 '12 at 18:45
You are right with MRC, but it is not in ARC. Sorry, I wanted to say ARC in my previous comment. – Jorge Perez Lahera Aug 6 '12 at 8:13
Really interesting, any idea on how ARC manages to move the block out of the stack? – Mathieu Godart Nov 21 '12 at 22:44
show 1 more comment

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.