NSString stringByAppendingPathComponent上的内存泄漏:

时间:2012-07-05 15:31:44

标签: objective-c ios

分析显示内存泄漏,我在下面的代码片段中为fileB分配filePath值:

NSString *docsDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES) objectAtIndex:0];

NSString *filePath = [docsDir stringByAppendingPathComponent:@"/fileA"];

if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]){
    self.propertyA = [[NSMutableArray alloc] initWithContentsOfFile:filePath];
} else {
    //  initialize array with default values and write to data file fileA   
    [self populatePropertyAForFile:filePath];       
}

filePath = [docsDir stringByAppendingPathComponent:@"/fileB"];

if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]){
    self.propertyB = [[NSMutableArray alloc] initWithContentsOfFile:filePath];
} else {
    // initialize array with default values and write to data file fileB

    [self populatePropertyBForFile:filePath];

}

我理解这是因为之前的值(对于fileA)尚未发布。但我无法弄清楚如何阻止这种泄漏。

1 个答案:

答案 0 :(得分:2)

没有。 filePath没有任何问题。您的两个属性propertyApropertyB几乎可以肯定这个问题。如果它们是保留属性,那么分配给它们的数组及其内容将会泄漏,因为您拥有已分配的数组并且您没有释放它们。改变这样的行:

self.propertyA = [[[NSMutableArray alloc] initWithContentsOfFile:filePath] autorelease];
                                                                        // ^^^^^^^^^^^ will release ownership of the array