通过X-Code中的Leaks工具运行我的程序,它指向此函数是导致内存泄漏的主要原因。
+ (NSMutableArray *) getColumns:(NSString *) deviceHtml {
NSMutableArray *ret = [[[NSMutableArray alloc] init] autorelease];
NSRegularExpression *m = [[NSRegularExpression alloc] initWithPattern:@"<td[\\w\\W\\d\\s</>]*?>[\\w\\W\\d\\s]+?</td>" options:NSRegularExpressionCaseInsensitive error:nil];
NSArray *results = [m matchesInString:deviceHtml options:NSMatchingCompleted range:NSMakeRange(0, [deviceHtml length])];
[m release];
for (NSTextCheckingResult * res in results) {
NSString *cleaned = [deviceHtml substringWithRange:[res range]];
int firstClose = [cleaned rangeOfString:@">"].location;
int cleanedLength = [cleaned length];
NSString *cleaned1 = [cleaned substringWithRange:NSMakeRange(firstClose+1, cleanedLength-(firstClose+1))];
int closingComment = [cleaned1 rangeOfString:@"</td"].location;
NSString *cleaned2 = [cleaned1 substringWithRange:NSMakeRange(0, closingComment)];
NSString *cleaned3 = [cleaned2 stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
[ret addObject:cleaned3];
}
return ret;
}
特别是这一行,
NSString *cleaned2 = [cleaned1 substringWithRange:NSMakeRange(0, closingComment)];
我不太确定使用NSCFStrings和便捷方法进行内存管理,所以我有点卡住,有人可以给我一些指示吗?
由于
答案 0 :(得分:2)
首先,该方法不应该是getColumns:
,而应该是columnsForDevice:
之类的方法。 get*
作为前缀在Cocoa中具有非常特殊的含义,而不是它。
其次,泄漏工具显示泄漏分配的位置,而不是实际发生泄漏的 。
如果返回的数组在其他地方过度保留,那么这将是泄漏的来源。