i´m using the AVAssetImageGenerator to get images from a movieclip without playing it before. Now i´ve got a question how to set up variables in the loop of a handler? Is it possible? I´m getting this error message and have no idea what does that mean. (google> no results).

"Variable is not assignable (missing __block type specifier)"

So i have to ask the pro´s here. Here´s the code. I want to save or return my generated imageData, so i can delete the "setImage" message within that following handler.

UIImage* thumbImg = [[UIImage alloc] init];

AVAssetImageGeneratorCompletionHandler handler = ^(CMTime requestedTime, CGImageRef im, CMTime actualTime, AVAssetImageGeneratorResult result, NSError *error)
{
    if (result != AVAssetImageGeneratorSucceeded) 
    {
        NSLog(@"couldn't generate thumbnail, error:%@", error);
    }
    [button setImage:[UIImage imageWithCGImage:im] forState:UIControlStateNormal];
    thumbImg = [[UIImage  imageWithCGImage:im] retain];
    [generator release];
};

Would be great to learn about that. Thanks for your time.

link|improve this question

feedback

1 Answer

up vote 19 down vote accepted

1st of all it seems you don't need to init your thumbImg when its declared - UIImage object created in that line will be overwritten in block and will leak. Just init it with nil value.

Actual problem in your code is that variable you're going to change in block should be declared with __block specifier (as error message says). So your 1s line should be

__block UIImage* thumbImg = nil;
link|improve this answer
Cool, thanks for that! Have a nice day. – geforce Apr 29 '11 at 7:44
You're welcome :) – Vladimir Apr 29 '11 at 7:45
thanks for your great answer! may i know what is the effect of __block in this case? i remember it has something to do with memory being retained. – Zhen Jun 21 '11 at 1:46
@Zhen, check relevant topic in docs: developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/… – Vladimir Jun 21 '11 at 6:38
Never heard about __block specifier before. Thx for the answer. You saved me a lot of time. :) – Maverick1st Sep 8 '11 at 9:41
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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