我有以下两种方法:
-(void)playSound {
NSString* filePath = [self getBasePath]; // <-- warnings appear when this is called
}
和
-(NSString*) getBasePath {
if( debug ) NSLog(@">>> Entering %s <<<", __PRETTY_FUNCTION__);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
if( debug ) NSLog(@">>> Leaving %s <<<", __PRETTY_FUNCTION__);
return documentsDir;
}
调用playound时会调用methode getBasePath。但后来我在控制台上收到以下警告:
2011-08-06 00:26:56.298 Alarm[82648:5d03] *** __NSAutoreleaseNoPool(): Object 0x4e350e0 of class __NSArrayM autoreleased with no pool in place - just leaking
2011-08-06 00:26:56.299 Alarm[82648:5d03] *** __NSAutoreleaseNoPool(): Object 0x4e350c0 of class NSCFString autoreleased with no pool in place - just leaking
2011-08-06 00:26:56.300 Alarm[82648:5d03] *** __NSAutoreleaseNoPool(): Object 0x4b43c00 of class NSCFString autoreleased with no pool in place - just leaking
2011-08-06 00:26:56.300 Alarm[82648:5d03] *** __NSAutoreleaseNoPool(): Object 0x4b46900 of class NSPathStore2 autoreleased with no pool in place - just leaking
2011-08-06 00:26:56.301 Alarm[82648:5d03] *** __NSAutoreleaseNoPool(): Object 0x4e37630 of class NSPathStore2 autoreleased with no pool in place - just leaking
2011-08-06 00:26:56.302 Alarm[82648:5d03] *** __NSAutoreleaseNoPool(): Object 0x4e35100 of class __NSArrayI autoreleased with no pool in place - just leaking
这是什么意思?
答案 0 :(得分:3)
可能你不是在主线程上执行这个方法。如果你这样做,你必须创建一个NSAutoreleasePool。
-(void)playSound {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int index = rand() % [soundFilenames count];
NSString* filePath = [self getBasePath];
[pool drain];
}