我正在开发 ios 应用程序,现在想测试它是否存在内存泄漏,我使用了
clang 静态分析器
它给了我这个错误报告
-(void)pass
{
printf("reading plist info");
// Path to the plist (in the application bundle)
NSString *path = [[NSBundle mainBundle] pathForResource:
@"sortednames" ofType:@"plist"];
// Build the array from the plist
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
for (id key in dict) {
NSLog(@"bundle: key=%@, value=%@", key, [dict objectForKey:key]);
string_values=[dict objectForKey:key];
//NSLog(@"bundle data: key=%@, value=%@", key, [string_values objectAtIndex:0]);
}
//[dict release];
}
分析器提供的信息是
还有一件事对于我的应用程序的内存管理是否足够????
或者我必须做更多的任务???
感谢您的回复