在循环中编写块

时间:2015-06-24 09:56:39

标签: objective-c objective-c-blocks

我需要对以下代码提出一些建议:

for ( ...; ++i )
{
   int count = i;

   [self fetchFromServer completion:^(BOOL success) {
         // access the value of count here
   });
}

因为在块完成之前需要一段时间。所以,当我访问“count”时,该值是否符合我的预期?

谢谢!

0 个答案:

没有答案