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;