gpt4 book ai didi

iphone - 多次保存大型 nsstring 文件会使应用程序崩溃

转载 作者:行者123 更新时间:2023-11-28 18:40:27 28 4
gpt4 key购买 nike

下面的代码崩溃了。基本上我正在访问一个保存为文件的非常大的字符串(xml - 包含图像数据)......修改它并以新名称保存它......在分析时我没有看到任何泄漏这段代码……但是在重复这个过程 20-25 次之后……该应用程序在 iphone 3gs 上崩溃,内存警告级别为三,并且它也杀死了整个正在运行的应用程序……我找不到这个应用程序泄漏的任何地方引起内存警告....任何建议

NSAutoreleasePool *pool=[[NSAutoreleasePool alloc] init];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documents = [paths objectAtIndex:0];
NSString *filename = [NSString stringWithFormat:@"%@.yyy",fileToDuplicate];
NSString *initPath = [documents stringByAppendingPathComponent:filename];
NSString *final = [NSString stringWithFormat:@"%@.yyy",[[alertView textFieldAtIndex:0] text]];
NSString *finalPath = [documents stringByAppendingPathComponent:final];
NSString *newName=[[[alertView textFieldAtIndex:0] text] copy];
NSError *error;
NSString *xml = [[NSString alloc] initWithContentsOfFile:initPath encoding:NSASCIIStringEncoding error:&error] ;
NSString *xml_1=[xml stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"<file_name><name>%@.yyy</name></file_name>",fileToDuplicate] withString:[NSString stringWithFormat:@"<file_name><name>%@.yyy</name></file_name>",newName]];
NSString *xml_2=[xml_1 stringByReplacingOccurrencesOfString:[NSString stringWithFormat:@"<property_name>%@</property_name>",fileToDuplicate] withString:[NSString stringWithFormat:@"<property_name>%@</property_name>",newName]];
[xml_2 writeToFile:finalPath atomically:YES encoding:NSASCIIStringEncoding error:&error];
xml=nil;
[xml release];
xml_1=nil;
xml_2=nil;
[self.mTableView reloadData];
fileToDuplicate=@"";
[newName release];
[pool drain];
return ;

最佳答案

如果您没有看到泄漏的地方,那么切换到 ARC。就像中间的一天一样清晰:

分配 xml

将变量 xml 设置为 nil (LEAK!!!!!)

释放 xml 的内容(为 nil)<--- 这什么都不做

最后两个是反的。您需要在将其设置为 nil 之前释放它。如果您不理解这个概念,我建议您阅读更多有关指针的内容。释放消息作用于指针的内容,而不是指针本身。后者没有意义。

关于iphone - 多次保存大型 nsstring 文件会使应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11595203/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com