gpt4 book ai didi

ios - 使用 AFNetworking 从服务器加载多个图像时应用程序崩溃

转载 作者:可可西里 更新时间:2023-11-01 03:13:02 27 4
gpt4 key购买 nike

我在我的应用程序中集成了 AFNetworking 库以从 URL 下载图像,但当我们加载多张图像时应用程序崩溃了。

当我使用 Xcode 崩溃报告列表(Xcode -> 窗口 -> 管理器 -> 崩溃 -> 我们的应用程序)分析我的代码时,它在 AFNetworking 库中显示这行代码的错误:

Class: UIImageView+AFNetworking

Method Name: setImageWithURLRequest

Line of code: [[[self class] af_sharedImageRequestOperationQueue] addOperation:self.af_imageRequestOperation];

谁能帮我解决这个问题?

最佳答案

试试下面的代码

 NSURL *url = [NSURL URLWithString:@"YourImageURL"];

NSURLRequest *request = [NSURLRequest requestWithURL:url];

UIImage *placeholderImage = [UIImage imageNamed:@"placeholder"];

__weak UIImageView *weakImageView = yourImageView;

[weakImageView setImageWithURLRequest:request

placeholderImage:placeholderImage

success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {

weakImageView.image = image;

} failure:nil];

关于ios - 使用 AFNetworking 从服务器加载多个图像时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34001815/

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