使用NSOperationQueue跟踪下载

时间:2012-12-18 14:36:57

标签: iphone objective-c ios cocoa-touch nsoperationqueue

我有一个5 NSOperations的队列。队列的setMaxConcurrentOperationCount设置为1.每个操作基本上都是调用服务器来下载特定文件。

当文件保存到磁盘时,跟踪一个文件的下载是否已完成以启动另一个NSOperation 的最佳方法是什么?或者有没有办法让NSOperations知道文件的下载进度?

2 个答案:

答案 0 :(得分:1)

您应该覆盖isFinished子类中的NSOperation方法,只有在实际完成时才返回YES

答案 1 :(得分:1)

您可以简单地将NSOperation子类化,并将用于下载和保存数据的代码放入文件系统中-main子类的NSOperation方法。操作完成后,下一步操作NSOperationQueue将自动开始执行

@implementation MyOperation

- (void) main {
    if ([self isCancelled]) {
        NSLog(@"** operation cancelled **");
    } else {
        NSURL *conUrl = [NSURL URLWithString: urlString];
        NSError *error;
        NSData *conData = [NSData dataWithContentsOfURL: conUrl options: NSDataReadingMappedIfSafe error: & error];
        if (!error) {
            UIImage *image = [
                [UIImage alloc] initWithData: conData];

            NSString *cacheDir = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex: 0];
            NSString *jpgFilePath = [NSString stringWithFormat: @"%@/%@.jpg", cacheDir, textLabel];
            conData = [NSData dataWithData: UIImageJPEGRepresentation(image, 1.0f)];
            [conData writeToFile: jpgFilePath atomically: YES];
        }
    }

    NSLog(@"Operation finished");
}


@end