首先,请原谅我的英语不好,但我是法国人,我会尽力让别人理解。
所以,我正在用这种结构编写一个简单的应用程序: - viewController 类(处理 UI) - 产品类(定义对象产品) - ws_product 类(包含一些获取 json 数据的函数)
我想要做的是返回 products 数组,这是我在我的 viewController 中解析 ws_product 中的 json 后得到的。多亏了这一点,我可以填充我的 tableView 并且我的应用程序将不再是空的!
我实际的 ws_product 是:
#import "WS_Produit.h"
#import "Produit.h"
#import "ViewController.h"
@implementation WS_Produit
- (NSMutableArray *)getProduitsJSON
{
__block NSMutableArray *result;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^() {
NSLog(@"on passe en async");
NSError *error = nil;
NSData *jsonData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"the url to load"]];
NSDictionary *produits = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&error];
if( error )
{
NSLog(@"%@", [error localizedDescription]);
}
else {
dispatch_sync(dispatch_get_main_queue(), ^(){
NSLog(@"retour en sync");
result = [[NSMutableArray alloc] init];
Produit *tmp;
NSArray *produit = produits[@"produits"];
for ( NSDictionary *property in produit )
{
tmp = [Produit new];
tmp.ref = property[@"ref"];
tmp.name = property[@"name"];
tmp.description = property[@"description"];
tmp.price = property[@"price"];
tmp.imgURL = property[@"imgURL"];
[result addObject:tmp];
NSLog(@"%@", result);
}
});
}
});
NSLog(@"sortie du block");
NSLog(@"%@", result);
return result;
}
@end
我的问题是当我离开 dispatch_queue 时,我的结果数组是空的,所以在我的 viewController 类中返回它是没有用的,我该怎么办?