IOS停止活动队列

时间:2014-11-27 13:54:09

标签: ios objective-c iphone

我有一个队列,负责下载表视图的图像,我想在重新加载表视图或我转到新的视图控制器时停止此队列。我试图在块内进行某种验证,但似乎都没有。

if(!ImageQueue){
    ImageQueue = dispatch_queue_create("com.loadimages", NULL);
}

dispatch_async(ImageQueue, ^{

    UIImage * image = [UIImage imageWithData:[NSData dataWithContentsOfURL:
                                             [NSURL URLWithString: urlString]]];


});

0 个答案:

没有答案