Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ARC: EXC_BAD_ACCESS when calling a method from inside a block, inside a delegate method

I created a block, inside a delegate method and I am using it to call a static method in another class. I am getting an EXC_BAD_ACCESS error even when I have NSZombies enabled. There are a few posts on here about similar problems - I think this one is the closest:

ARC: Getting EXC_BAD_ACCESS from inside block used in delegate method

But, I haven't found anything so far that has helped. Here is the code:

@interface MyClass()
@property (nonatomic, copy) CaseBlock c;
@end

....

//NSURLConnection delegate method
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{        
    NSDictionary *d = [NSDictionary dictionaryWithObjectsAndKeys:
                       //blows up after executing this
                       ^() { [AnotherClass staticMethod]; },authURL,
                       ^() { NSLog(@"TODO");}, searchURL,
                       ^() { NSLog(@"TODO"); }, itemURL,
                       nil];
    self.c = [[d objectForKey:[self.url path]] copy];

    if (self.c) {
        self.c();
    } else { NSLog(@"WARN unexpected response path"); }

}

This is the first time that I have tried to use blocks, but I can tell that this is causing the problem because calling the method from outside the block works fine. And also, as far as I can tell, all of the code that I wrote actually gets executed AND THEN the EXC_BAD_ACCESS error happens. But, I am new to Objective-C so, please correct me if I am wrong about that.

like image 990
minus Avatar asked Jan 14 '23 07:01

minus


1 Answers

You need to copy blocks if they need to outlive the scope they were created in. Since dictionaryWithObjectsAndKeys: deals with objects in general and not specifically blocks, it doesn't know to copy them, so you must copy them before passing them to it.

NSDictionary *d = [NSDictionary dictionaryWithObjectsAndKeys:
                   //blows up after executing this
                   [^() { [AnotherClass staticMethod]; } copy], authURL,
                   [^() { NSLog(@"TODO");} copy], searchURL,
                   [^() { NSLog(@"TODO"); } copy], itemURL,
                   nil];
like image 186
newacct Avatar answered Jan 30 '23 19:01

newacct