今天看了个关于多线程的demoNSThread *thread = [[NSThread alloc]initWithTarget:self selector:@selector(downloadImage:) object:kURL];
    [thread start];但是代码中没有执行[thread release]在NSThread手册中找到
For nongarbage-collected applications, the method selector is responsible for setting up an autorelease
pool for the newly detached thread and freeing that pool before it exits. 难道在downloadImage中加入autorelease pool就可以了?