首页 > 代码库 > JSON数据转化成模型

JSON数据转化成模型

JSON数据转化成模型
// 1.创建url
NSURL*url = kSUNUrl(@"video");

// 2.创建request
NSURLRequest*request = [NSURLRequestrequestWithURL:url];

// 3.发送请求数据
NSOperationQueue*queue = [NSOperationQueuemainQueue];
[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
   
   
if (connectionError || data =http://www.mamicode.com/=nil) {
        [MBProgressHUD showError:
@"网络超时,请稍后..."];
       
return ;
    }
   
// 4.解析json数据
    NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:
nil];
    NSArray *videosArray = dict[
@"videos"];

   
for (NSDictionary *dictin videosArray) {
        [_arrayM addObject:[SUNVideoItem videoWithDict:dict]];
    }
   
// 5.刷新表格
    [
self.tableView reloadData];
}];


注意:
在发送网络数据结束之后,一定要刷新表格。

JSON数据转化成模型