私は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];
}
アナライザーによって提供される情報は
そしてもう1つ、私のアプリのメモリ管理には十分ですか????
または私はいくつかのより多くのタスクを実行する必要があります???
返信ありがとうございます