다운 : https://github.com/johnezang/JSONKit
사용방법 참고 : http://www.thezeto.com/wordpress/?p=14
참고 자료 : http://psionides.eu/2010/12/12/cocoa-json-parsing-libraries-part-2/
[usage]
NSString *jsonUrl = @"http://twitter.com/statuses/public_timeline.json"; NSData *jsonData = [NSData dataWithContentsOfURL:[NSURL URLWithString:jsonUrl]]; //NSLog(@"jsonData : %@", [jsonData objectFromJSONData]); NSArray *items = [jsonData objectFromJSONData]; NSLog(@"jsonData >> class : %@, count : %d", [items class], [items count]); //NSLog(@"jsonData >> %@", [items objectAtIndex:0]); // Array에서 Dictionary 가져오기 NSDictionary *dic = [items objectAtIndex:0]; NSLog(@"dic created_at:%@", [[dic valueForKey:@"created_at"] description]);
'개발 > iOS Dev' 카테고리의 다른 글
정말 감사한 블로그, 카페, 기타등등 (0) | 2012.07.12 |
---|---|
[아이폰어플]UIImageView에 원격이미지 비동기 로드 및 캐쉬 기능 넣기 (0) | 2012.07.12 |
[iOS] XML parser (0) | 2012.07.02 |
[iOS] TableViewController를 UINavigationController와 함께 모달뷰로 띄우기 (0) | 2012.06.29 |
아이폰 앱을 앱스토어 통하지 않고 배포하는 방법 (0) | 2012.06.28 |