我是一個看似直截了當的問題,我似乎無法找到答案(它妨礙我的應用程序)。iPhone SDK後臺線程調用其他方法
我有運行paricular方法在後臺線程:
-(void)processImage:(UIImage *)image {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
//Process image here in the background here
[pool drain];
}
這個不多的偉大工程,但我的問題是當我想打電話從已經背景方法中的另一種方法。此通話是否保留在後臺?我是否需要將NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
和[pool drain];
添加到新方法中以使其在後臺運行?
任何建議將是非常有益的。我對此有點困惑。
非常感謝, 佈雷特