gpt4 book ai didi

ios - 我可以在每次调用方法时将同名的 UIImage 添加到 NSMutableArray 中吗?

转载 作者:行者123 更新时间:2023-11-29 04:18:10 25 4
gpt4 key购买 nike

我正在使用 AFNetworking API,并使用 AFImageRequestOperation 函数从服务器 API 调用图像 URL,以将其转换为 UIImage。我想做的是;每次我调用这个方法时:

NSURLRequest *requestImage = [NSURLRequest requestWithURL:theImageURL];
// theImageURL is the Image URL that is collected in a previous method from the server.

AFImageRequestOperation *imageOperation = [AFImageRequestOperation imageRequestOperationWithRequest:requestImage imageProcessingBlock:nil success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image)
{
objImageArray = [[NSMutableArray alloc] init];
if (requestImage != nil) {

[objImageArray addObjectsFromArray:image];

}


} failure:nil];

[imageOperation start];

所以我已经调用了该 URL 并成功将图像 URL 分配给了 UIImage。然后我分配了一个 NSMutableArray 并将图像添加到其中。我遇到的问题是,每次再次调用该方法时,MutableArray 都会用新图像替换旧图像。我提前致谢!

最佳答案

您应该能够在 .h 文件中设置 NSMutableArray。

@property(nonatomic, strong) NSMutableArray * objImageArray;

然后删除 .m 文件中创建数组的代码。

objImageArray = [[NSMutableArray alloc] init];

然后您可以使用相同的添加对象,但您需要确保将其设置为数组。

[self.objImageArray addObjectsFromArray:image];

编辑:数组不关心它包含的对象的名称,因此它们可以具有相同的名称。当您查找图像时,您会从数组索引而不是名称中获取图像。

希望这有帮助。

关于ios - 我可以在每次调用方法时将同名的 UIImage 添加到 NSMutableArray 中吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13377589/

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