I am using following code to parse JSON and getting memory leak (100%) on line number 2. I don't know what is the problem, can someone help me ?
NSString *response = [request responseString];
NSMutableDictionary *responseJSON = [response JSONValue]; (100% leak)
NSString *tockenString = [responseJSON objectForKey:@"Token"];
NSString *userIDString = [responseJSON objectForKey:@"ID"];
I found the answer. Go to SBJsonParser.m function scanRestOfString and change the line
from
to
SBJsonParser has a like in scanRestOfString/NSMutableString. I reported the bug as well. Thank you all.