I need some advise on the following code:
for ( ...; ++i )
{
int count = i;
[self fetchFromServer completion:^(BOOL success) {
// access the value of count here
});
}
Because it takes awhile before the block is complete. So when I access "count", will the value be what I expected?
Thanks!