Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote the following code to add a list of selectable thumbnails in a scroll view

while(element = [enumerator nextObject])
    {
        // Do your thing with the object.
        MenuUrl *menuUrl = (MenuUrl *) element;
        if([menuUrl.index isEqualToString:@"menu_url"] || [menuUrl.index isEqualToString:@"photos_url"])
            continue;
        //NSLog(@"%@", menuUrl.index);
        NSString *url = menuUrl.image.thumbUrl;

        dispatch_queue_t download_queue = dispatch_queue_create("image downloader", NULL);
        dispatch_async(download_queue, ^{
            UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString: url]]];
            CGRect imageframe;
            imageframe.origin.x = 15+ 101.6*(imageNumber % 3);
            //NSLog(@"%d", imageNumber);
            imageframe.origin.y =  101.6*(imageNumber / 3);
            imageframe.size.height = 86.6;
            imageframe.size.width = 86.6;
            dispatch_async(dispatch_get_main_queue(), ^{

                UIButton *myButton0 = [[UIButton alloc] initWithFrame:imageframe];
                myButton0.tag = imageNumber;
                [myButton0 setBackgroundImage:image forState:UIControlStateNormal];
                [myButton0 addTarget:self action:@selector(showDetailImage) forControlEvents:UIControlEventTouchUpInside];
                [scrollView addSubview:myButton0];

            });
        });
        dispatch_release(download_queue);
        imageNumber = imageNumber + 1;


    }
    [self.view addSubview:scrollView];

Now, whenever I select any of the thumbnails, I am getting an EXC_BAD_ACCESS error. Why is this happening?

share|improve this question
Please post the stacktrace. – trojanfoe Oct 12 '12 at 12:38
1  
You can do a couple of things to help with debugging: turn on zombies in the scheme you use for running the app and use @try/@catch around the code that executes when you select a thumbnail (log the exception description and the stack symbols in the @catch part). – Phillip Mills Oct 12 '12 at 12:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.