码迷,mamicode.com
首页 > Web开发 > 详细

TouchJSON的简单使用

时间:2016-06-10 17:44:03      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

TouchJSON是OC转换JSON的一个第三方类库,使用简单。在GitHub上可以轻松获取:TouchJSON

以下是简单的事例演示从douban movie请求JSON数据并转为字典对象后对控件赋值。

#import "ViewController.h"

#import "CJSONSerializer.h"

#import "CJSONDeserializer.h"

#import "NSDictionary_JSONExtensions.h"


@interface ViewController () @property (weak, nonatomic) IBOutlet UITextView *textView; @property (nonatomic, strong) NSMutableDictionary *dic; @property (nonatomic, strong) NSString *text; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. } - (IBAction)didClickTouchJSONButton:(id)sender { //GCD异步 dispatch_queue_t q1 = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_async(q1, ^{ NSURL *url = [NSURL URLWithString:@"https://api.douban.com/v2/movie/subject/22265299"]; NSString *jsonString = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];

//直接转换,import CJSONDeserializer.h //self.dic = [[CJSONDeserializer deserializer] deserialize:[jsonString dataUsingEncoding:NSUTF8StringEncoding] error:nil]; //如果使用下面扩展了NSDictionary的方法,请import NSDictionary_JSONExtensions.h self.dic = [NSDictionary dictionaryWithJSONString:jsonString error:nil]; NSString *title = [self.dic objectForKey:@"original_title"]; NSMutableArray *genresArray = [self.dic objectForKey:@"genres"]; NSString *genres = [NSString stringWithFormat:@"%@/%@",[genresArray objectAtIndex:0],[genresArray objectAtIndex:1]]; NSString *summary = [self.dic objectForKey:@"summary"]; self.text = [NSString stringWithFormat:@"电影名称:%@\n体裁:%@\n剧情介绍:%@",title,genres,summary]; //更新UI操作需要在主线程 dispatch_async(dispatch_get_main_queue(), ^{ self.textView.text = self.text; }); }); }

 

TouchJSON的简单使用

标签:

原文地址:http://www.cnblogs.com/foxting/p/5573894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!