私はAFNetworkingAPIを使用しており、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が古い画像を新しい画像に置き換えることです。よろしくお願いします!