NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
//responseData = nil;
NSMutableDictionary* json =[[responseString JSONValue] retain];
[responseString release];
NSLog(@"Sample message %d",[json retainCount]);
这里我得到的保留计数是 2,任何人都可以帮助我如何跟踪这个保留计数。问题是当我编写以下代码时,应用程序崩溃了。
[json release];
应用程序崩溃。