我的iPad应用程序出了问题,我需要一次从服务器下载超过10,000张图像。我成功下载了8000多张图片,但之后我得到了一个例外,例如“Program received signal:”0“。 数据格式化程序暂时不可用,将在“继续”后重试。 (加载共享库的未知错误“/Developer/usr/lib/libXcodeDebuggerSupport.dylib”) (gdb)“这在调试器中。我测试了内存管理。内存管理没有问题。但我仍然有例外。请帮助我。
提前致谢, Sekhar Bethalam。
答案 0 :(得分:2)
使用数据格式化程序,以便调试器可以将对象表示为不仅仅是指针或整数值(例如,数据格式化程序允许调试器向您显示NSNumber
的基础值或内部元素NSArray
等。有时候 - 我不知道为什么 - 他们只是停止工作。无论如何,数据格式化程序不起作用的事实不是问题的根源。
没有看到任何代码(例如您下载和/或存储图像的方式),诊断问题并不容易。在Google上进行了一些挖掘后,看来iPhone OS上的程序在使用太多资源(不一定只是内存)时会收到信号0。你无法阻止iPhone OS在你想要的时候杀死你的程序。
几个问题:
你是在紧张的环路吗?您的代码可能不会保留对任何数据/ URL /图像的引用,但自动释放池可能是。在紧密循环的情况下,有时建议在循环开始时创建一个新的自动释放池,并在底部释放它。例如:
for (NSUInteger i = 0; i < 10000; i++)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// do the work to get the image. Objects are automatically added to the
// most recently created autorelease pool in the current thread.
[pool release];
}
答案 1 :(得分:1)
这是我上面提到的代码,
for(int i = 0; i&lt; 10000; i ++) { printf(“\ n生成图像..............:%d”,i); 我++;
UIImageView* imageView=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, spotItem.imageWidth, spotItem.imageHight)];
NSData *receivedData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://sererpath/prudently/iphone/image_s/e545afbf-4e3e-442e-92f9-a7891fc3ea9f/test.png"]];
imageView.image = [[UIImage alloc] initWithData:receivedData] ;
//imageView.image=[UIImage imageNamed:@"1.png"];
[spotItem.subView addSubview:imageView];
[imageView release];
}
我是直接下载的。