我正在尝试加载一堆图像:
for (NSDictionary *s in things) {
[manager downloadWithURL:[NSURL URLWithString:s[photo]]
options:0
progress:nil
completed:nil];
}
它没有下载这些图像。但是,如果我传入一个空的完成块,如下所示:
for (NSDictionary *s in things) {
[manager downloadWithURL:[NSURL URLWithString:s[photo]]
options:0
progress:nil
completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished) { }];
}
然后它工作得很好。我的问题是:为什么?有一个更好的方法吗?传入一个空块对我来说似乎不合适。