반응형
Touch Json 간단한 사용방법은,
// Parse JSON results with TouchJSON. It converts it into
a dictionary.
CJSONDeserializer *jsonDeserializer = [CJSONDeserializer deserializer];
NSError *error;
NSDictionary *resultsDictionary = [jsonDeserializer deserializeAsDictionary:jsonData error:&error];
Response 받은 Data를 CJSONDeserializer를 Import 하고 돌려주기만 하면 Dictionary로 변환된다~!
매우매우 간단함. 복잡한 포맷을 사용하기엔 부적절함.
TouchJson Framework 는 다운로드 받아서 설치되는 오픈소스. 다운로드는 https://github.com/TouchCode/TouchJSON
IOS에 JSONFramework 가 추가되었다고는 하는데.. 추후 포스팅~!
반응형
'옛글 > 아이폰 프로그래밍' 카테고리의 다른 글
[iOS] Http Reqeust "POST/GET" Response Code (0) | 2012.08.07 |
---|---|
xCode iCloud 연동 소스 배포 (0) | 2012.07.23 |
Code signing is required for product type 'Application' in SDK 'iOS5.1' 에러처리 (0) | 2012.07.23 |
iOS에서 나인패치(배경리사이즈) 적용하기 (0) | 2012.07.20 |
iCloud Guide (XCode iCloud 적용가이드) (0) | 2012.07.17 |