我JSONKit用来解析 JSON 字符串,由于某种原因,当尝试将 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
谢谢!