sortedArrayUsingSelector定義を含む行のメモリリークが発生します。誰が問題なのか分かっていますか?NSArray sortedArrayUsingSelector memory leak
@property (nonatomic, retain) NSArray *indexLetters;
...
NSMutableDictionary *indexedCategories = [[NSMutableDictionary alloc] init];
...
self.indexLetters = [[indexedCategories allKeys] sortedArrayUsingSelector:@selector(compare:)];
[indexedCategories release];
'compare'メソッドでは何が行われていますか? – Ilanchezhian
デフォルトの比較セレクタです。私は比較メソッドを実装していません。または私は間違っていますか? – dorin
あなたが言っていることは、あなたが漏れているということですか?インストゥルメントまたはスタティックアナライザー? –