我在我的项目中使用谷歌的GData客户端库为picasa照片。我已经在项目下的EDIT方案中启用了NSZombie设置,因此启用后控制台显示此错误“ - [__ NSDictionaryM countByEnumeratingWithState:objects:count: ]:发送到解除分配的实例的消息“。我发现此错误的代码片段
for( GDataEntryPhotoAlbum * entry in [(GDataFeedPhotoUser *)result entries]){
@autoreleasepool {
GRKAlbum * album = [self albumFromGDataEntryPhotoAlbum:entry];
[albums addObject:album];
}
}
for more info i have integrated grabKit third party framework in project
我已经检查过关于内存问题的一切都很好。
答案 0 :(得分:4)
我是GrabKit的开发者。感谢您使用它:)
我有两个问题:
_您的项目是否在ARC下?
_禁用NSZombie时此错误是否会消失?
你能否在崩溃之前给我们一个'entry'的日志值?
感谢您帮助改进GrabKit:)