I've just run into blocks and I think they are just what I'm looking for, except for one thing: is it possible to call a method [self methodName] from within a block?

This is what I'm trying to do:

-(void)someFunction{
    Fader* fader = [[Fader alloc]init];

    void (^tempFunction)(void) = ^ {
        [self changeWindow:game]; 
        //changeWindow function is located in superclass
    };

    [fader setFunction:tempFunction];
}

I've been searching for a couple of days and I can't find any evidence that this is possible.

Is this at all possible, or am I trying to use blocks for something they aren't meant for?

The reason I'm using blocks is that I've created a Fader class, and I want to store a block for it to execute when it finishes fading out.

Thank you

EDIT: Okay, I added in the suggestion, but I'm still getting an EXC_BAD_ACCESS error...

-(void)someFunction{
    Fader* fader = [[Fader alloc]init];

    __block MyScreen* me = self;

    void (^tempFunction)(void) = ^ {
        [me changeWindow:game]; 
        //changeWindow function is located in superclass
    };

    [fader setFunction:tempFunction];
    [fader release];
}

Maybe I'm not allowed to give fader the function...?

link|improve this question
feedback

2 Answers

up vote 30 down vote accepted

Yes, you can do this.

Note, however, that the block will retain self. If you end up storing this block in an ivar, you could easily create a retain cycle, which means neither would ever get deallocated.

To get around this, you can do:

- (void) someMethodWithAParameter:(id)aParameter {

  __block MySelfType *blocksafeSelf = self;
  void (^tempFunction)(void) = ^ {
      [blocksafeSelf changeWindow:game];
  };

  [self doSomethingWithBlock:tempFunction];

}

The __block keyword means (among other things) that the referenced object will not be retained.

link|improve this answer
You should add the surrounding method declaration; I think that is what is confusing OP. – bbum Feb 17 '11 at 0:33
Okay, so I've done that, but I'm still getting an EXC_BAD_ACCESS error. Could it be that instead of the last line of code you have, I'm sending the function somewhere else? [button setFunction:tempFunction]; – Marty Feb 17 '11 at 4:11
2  
@Marty make sure the function property on your button object is a copy property, and not a retain property. – Dave DeLong Feb 17 '11 at 7:24
Thank you so much! That fixed my problem. – Marty Feb 17 '11 at 9:43
2  
Note that by doing this you do introduce the possibility of self becoming a dangling pointer and causing an RTE if the block is called after self has been deallocd. Before ARC you could use Mike Ash's MAZeroingWeakRef library to create a safe reference to self within the block. After ARC, on iOS 5.0 and up, you can use the extra keyword __weak to make your reference to self a zeroing weak reference. – Prairiedogg Dec 1 '11 at 14:20
feedback

Is it possible to call a method [self methodName] from within a block?

Yes, why not. If your tempFunction is an instance method, you can do it. The called method should be accessible is the only restriction.

link|improve this answer
tempFunction is not an instance method — it’s a block. – Bavarious Feb 17 '11 at 0:03
I think Mahesh meant "if your tempFunction is inside an instance method...` – bbum Feb 17 '11 at 0:32
@bbum True; that makes more sense. – Bavarious Feb 17 '11 at 0:49
feedback

Your Answer

 
or
required, but never shown

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