因此,如果 json 数组返回正数,我将使用下面的代码循环遍历 json 数组,我将 json 数组添加到另一个包含所有总数组的数组中。然而,这可能需要一些时间才能完成,因为它会通过几个不同的 json url 插入不同的动态信息。
我编辑了下面的代码以显示更多基本信息。我的问题是,直到 for 循环完成,数据才真正输入到数组中。我需要在找到它后立即添加它,而不是在它运行完所有 onlineChannels.count 之后添加它 - 有什么帮助吗?
for (int i = 0; i<onlineChannels.count; i++) {
[jsonResults addObject:[parsingJson objectAtIndex:0]];
NSLog(@"%i",jsonResults.count);
[MBProgressHUD hideAllHUDsForView:self.view animated:YES];
[self.tableView reloadData];
} else {
[MBProgressHUD hideAllHUDsForView:self.view animated:YES];
[self.tableView reloadData];
}
}