JSON数据转化成模型
// 2.创建request
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// 3.发送请求数据
NSOperationQueue *queue = [NSOperationQueue mainQueue];
[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
if (connectionError || data == nil) {
[MBProgressHUD showError:@"网络超时,请稍后..."];
return ;
}
// 4.解析json数据
NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
NSArray *videosArray = dict[@"videos"];
for (NSDictionary *dict in videosArray) {
[_arrayM addObject:[SUNVideoItem videoWithDict:dict]];
}
// 5.刷新表格
[self.tableView reloadData];
}];
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。