我是 iphone 开发新手,我在以下代码中面临内存泄漏
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
if(!currentNodeContent)
currentNodeContent = [[[NSMutableString alloc] initWithString:string] autorelease];
else
[currentNodeContent appendString:string];
}
使用仪器工具分析时,我在此代码中收到 100% 的内存泄漏
currentNodeContent = [[[NSMutableString alloc] initWithString:string] autorelease];
任何人都可以建议我解决此泄漏的方法吗