我正在使用 JSONKit 作为 NSMutableDictionary 解析 JSON 数据。
NSString *str = [[NSString alloc] initWithData:self.responseData encoding:NSUTF8StringEncoding];
NSMutableDictionary *jsonResponse = [self.responseData objectFromJSONData];
NSMutableDictionary *newData = [[NSMutableDictionary alloc] init];
[newData addEntriesFromDictionary:[jsonResponse mutableCopy]];
当我这样做时,我收到此错误:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSMutableDictionary addEntriesFromDictionary:]: dictionary argument is not an NSDictionary'
我试图找出导致此问题的原因。根据我的其他经验,我知道 jsonResponse 是 JKArray 的一个对象。
我需要帮助。谢谢。