temporaryDictionary
このステートメントが実行された後の参照カウントは何ですか:
temporaryDictionary = [NSMutableDictionary dictionary];
temporaryDictionary
の参照カウントは次の1
ようtemporaryDictionary
に初期化されていることがわかっています。
temporaryDictionary = [[NSMutableDictionary alloc] init];
ありがとう:D