2014년 1월 18일 토요일

JSON Data를 NSMutableDictionary로 받기

JSON data를 받은 MutableDictionary에서 value/key를 하나 추가하려니
immutable object를 건드리려 했다고 에러가 발생했다.

- 다음과 같이 해결 -

NSUInteger readingOptions = NSJSONReadingAllowFragments | NSJSONReadingMutableContainers;

위 변수를 [NSJSONSerialization JSONObjectWithData: options: error:] 의 options: 파라미터로 넘겨준다.

댓글 없음:

댓글 쓰기