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
ありがとう!