AFNetworking + AFHTTPRequestOperation无法保存数组

时间:2015-03-27 19:44:57

标签: ios objective-c json xcode afnetworking-2

所以我尝试在线访问json文件,当我使用AFHTTPRequestOperation方法运行完成块时,我可以获取JSON文件的内容。但是当我尝试在完成块之外的NSLog时,它变为null。我想知道为什么会这样,以及我将如何解决这个问题。以下是我到目前为止的代码:

    AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
    [operation setCredential:credentials];
    [operation setResponseSerializer:[AFJSONResponseSerializer alloc]];
    [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSLog(@"Success %@", responseObject);
        jsonOutputData = [NSMutableArray arrayWithObject:responseObject];
        self.newsFeedArray = [NSMutableArray arrayWithArray:[jsonOutputData copy]];


    }failure:^(AFHTTPRequestOperation *operation, NSError *error){
        NSLog(@"Failure: %@", error);
    }];

    [manager.operationQueue addOperation:operation];
    NSLog(@"%@", self.newsFeedArray);

带有Success的NSLog显示JSON但带有self.newsFeedArray的NSLog显示(null)。我只是想知道为什么会这样。如果您需要更多说明,请告诉我。任何帮助,将不胜感激!

谢谢!

1 个答案:

答案 0 :(得分:1)

成功和失败块被异步调用。因此,在self.newsFeedArray调用时尚未设置NSLog,因为操作尚未完成。

您可以等待操作完成(例如,[operation waitUntilFinished]),但您几乎肯定不想这样做,尤其是在主线程上。相反,完成块会触发所需的行为。