Monday, 30 September 2013

What's wrong with this block formating code?

What's wrong with this block formating code?

-(void)
vPerformBlockOnAllAutoCompleteHandler:((^)(BGMotherofAutoCompleteHandler *
acHandler))block
{
for (BGMotherofAutoCompleteHandler * acHandler in [self
arBGKeywordAutoCompleteHandlers]) {
block(acHandler);
}
}
Okay, so block is a block that takes BGMotherofAutoCompleteHandler as
argument. I went through the loop and call block(acHandler).
What's wrong?

No comments:

Post a Comment