JSON文字列を解析するために使用JSONKitしていますが、何らかの理由でJSON文字列をNSDictionaryそれに割り当てようとするとnullが返されます
JSONDecoder *jsonDecoder = [[JSONDecoder alloc] initWithParseOptions:JKParseOptionNone];
NSData *jsonData = [NSData dataWithBytes:[jsonString UTF8String] length:[jsonString length]];
NSDictionary *tempDict = [jsonDecoder objectWithData:jsonData];
jsonStringコンテンツを保持し、tempDict は等しいNULL
ありがとう!