내가 장치를 제어하는 가정에서 JSON 응답을 요청할 수 있습니다. 그러나, 나는 그것이 나에게 다음과 같은 오류를 제공NSJSONSerialization 나에게 오류 "중복 키"
NSDictionary* dict = [NSJSONSerialization
JSONObjectWithData:responseData
options:kNilOptions
error:&error];
NSLog("Error: %@", error);
을 시도 :
Error: Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed. (Cocoa error 3840.)" (Duplicate key for object around character 0.) UserInfo=0x6a8b8e0 {NSDebugDescription=Duplicate key for object around character 0.}
내가 웹을 검색하지만, 지금까지 도움이 아무것도 찾을 수 없습니다.
편집 : 꽤 긴, 그래서 대신에 여기를 게시, 그것을 here을 찾아주십시오 JSON 응답.
JSON 문자열을 사용하는 것이 더 쉬울 것입니다. – MByD