Writing a block within a loop

76 Views Asked by At

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!

0

There are 0 best solutions below