我有以下代码:
- (void)downloadPressed:(id)sender {
[_download startDownloadWithParser:^id(NSData *rawData) {
NSString* downloadName = [[_download url] lastPathComponent];
// ... more code
}];
[self reloadView];
}
这段代码位于 aUITableViewCell
中,众所周知,重用机制应该特别注意..
我的问题,干净简单:
如果我在块之后添加以下代码行:
_download = nil;
块内的_download
变量也为零!我希望它得到一个副本,如何?