gpt4 book ai didi

ios - AFNetworking + AFHTTPRequestOperation 无法保存数组

转载 作者:行者123 更新时间:2023-11-29 02:10:44 27 4
gpt4 key购买 nike

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

    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)。我只是想知道为什么会这样。如果您需要更多说明,请告诉我。任何帮助,将不胜感激!

谢谢!

最佳答案

成功和失败 block 被异步调用。所以 self.newsFeedArray 在最后一次 NSLog 调用时还没有设置,因为操作还没有完成。

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

关于ios - AFNetworking + AFHTTPRequestOperation 无法保存数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29308994/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com