我正在創建一個字典的深層可變副本,但由於某種原因我正在泄漏。我已經試過這樣:爲什麼使用CFPropertyListCreateDeepCopy時會出現泄漏?
NSMutableDictionary *mutableCopy = (NSMutableDictionary *)CFPropertyListCreateDeepCopy(kCFAllocatorDefault, sectionedDictionaryByFirstLetter, kCFPropertyListMutableContainers);
self.copyOfSectionedDictionaryByFirstLetter = mutableCopy;
CFRelease(mutableCopy);
這:
copyOfSectionedDictionaryByFirstLetter = (NSMutableDictionary *)CFPropertyListCreateDeepCopy(kCFAllocatorDefault, sectionedDictionaryByFirstLetter, kCFPropertyListMutableContainers);
兩個正在由Interface Builder的泄漏裝置標記。
任何想法?
謝謝!
做了一個構建和分析發現什麼? – 2010-10-13 21:19:37
不...不幸的不是。 – Jonah 2010-10-13 23:32:18