我有一个5 NSOperations
的队列。队列的setMaxConcurrentOperationCount
设置为1.每个操作基本上都是调用服务器来下载特定文件。
当文件保存到磁盘时,跟踪一个文件的下载是否已完成以启动另一个NSOperation
的最佳方法是什么?或者有没有办法让NSOperations
知道文件的下载进度?
答案 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