【发布时间】:2011-05-30 04:18:27
【问题描述】:
我正在编写一个应用程序,它需要下载大量图像,可能是 10,000 个。现在我可以在内存不足和应用程序崩溃之前达到大约 3000,这取决于图像文件的大小。我正在后台线程上下载它们并向用户显示进度。
我编写了一个辅助类,我正在访问它来执行此操作,并想知道这是否是我的问题所在,我只是在泄漏内存。
这是我下载图像的循环 - 这是在后台线程上运行的,这都在 NSAutoReleasePool 中:
for (int j=0; j < [items count]; j++)
{
ImagesHelper *helper = [[ImagesHelper alloc]init];
[helper downloadImages: [[items objectAtIndex:j] valueForKey:@"ItemSKU"] withManufacturer: [[manufacturers objectAtIndex:i] ManufacturerID]];
[helper release];
if (j%50==0) { //this notifies the user of progress
statusMessage = [NSString stringWithFormat:@"Downloading images: %@.jpg (%d of %d)", [[items objectAtIndex:j] valueForKey:@"ItemSKU"],j+1, [items count]];
[self performSelectorOnMainThread:@selector(setStatus) withObject:nil waitUntilDone:YES];
}
}
这是我的助手类:
-(void) downloadImages:(NSString *)ItemSKU withManufacturer: (NSString *) aManufacturerID{
NSData *imageData = nil;
NSData *imageDataLarge=nil;
NSString *fileName = [NSString stringWithFormat:@"%@_tn.jpg", [ItemSKU stringByReplacingOccurrencesOfString:@" " withString:@""]];
NSString *fileNameLarge = [NSString stringWithFormat:@"%@_lg.jpg", [ItemSKU stringByReplacingOccurrencesOfString:@" " withString:@""]];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
NSString *savePath = [documentsPath stringByAppendingPathComponent:fileName];
NSString *savePathLarge = [documentsPath stringByAppendingPathComponent:fileNameLarge];
/* go get the image */
NSString *URL = [NSString stringWithFormat:kProductImagesURL,aManufacturerID, fileName];
NSString *URLLarge = [NSString stringWithFormat:kProductImagesURL,aManufacturerID, fileNameLarge];
NSLog(@"Going to get the file: %@",URL);
imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:URL]];
if (imageData!=nil) {
[imageData writeToFile:savePath atomically:YES];
}
imageDataLarge = [NSData dataWithContentsOfURL:[NSURL URLWithString:URLLarge]];
if (imageDataLarge!=nil) {
[imageDataLarge writeToFile:savePathLarge atomically:YES];
}
imageData = nil;
imageDataLarge=nil;
}
仍在尝试掌握其中一些概念。
【问题讨论】:
标签: iphone objective-c ipad