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

I'm getting a Variable is not assignable (missing __block type specifier) in the line aPerson = participant;. How can I make sure the block can access to the aPerson variable and the aPerson variable can be returned?

Person *aPerson = nil;

[participants enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {   
    Person *participant = (Person*)obj;

    if ([participant.gender isEqualToString:@"M"]) {
        aPerson = participant;
        *stop = YES;
    }
}];

return aPerson;
share|improve this question

1 Answer

up vote 164 down vote accepted

You need to use this line of code to resolve your problem:

__block Person *aPerson = nil;

Please refer this tutorial for more details : Blocks and Variables

share|improve this answer
thanks @Miraaj! – tommi Nov 1 '11 at 6:28
12  
Please note that __block is prefixed with two underscores. – Eric Brotto Aug 20 '12 at 9:03

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.