gpt4 book ai didi

ios - SDWebImage 成功加载处理程序返回错误的 UIImage

转载 作者:行者123 更新时间:2023-11-28 17:35:16 28 4
gpt4 key购买 nike

我需要拉伸(stretch)一张大图片以在 iPad 应用程序中将其显示为背景。因为我是从网上下载的,所以我使用的是 SDWebImage。在容器 View Controller 中,我实例化了两个 UIImageView,一个 (bgimgvu) 将保存调整大小的 bg,另一个 (loadvu, invisible) 用于加载图片。我正在使用以下代码:

    bgimgvu = [[UIImageView alloc] init];
bgimgvu.contentMode = UIViewContentModeBottomRight;
bgimgvu.frame = CGRectMake(0, 44, 1024, 675);
[self.view addSubview:bgimgvu];

UIImageView * loadvu = [[UIImageView alloc] init];
[loadvu setImageWithURL:[NSURL URLWithString:urls] placeholderImage:[UIImage imageNamed:@"placeholder_small.png"] success:^(UIImage *image) {
UIImage * bgi = [self resizeImage:image newSize:CGSizeMake(1500, 675)];
if (bgi!=nil) {
[bgimgvu setImage:bgi];
}
} failure:^(NSError *error2) {
NSLog(@"*** Background loading error: %@", error2 );
}];

在此之后,我实例化了另一个 View Controller 来容纳其他图形 UI 元素,其中有另一张从互联网上下载的图片。然后我将它添加到 self.view

问题是:这个回调函数

        success:^(UIImage *image) {
UIImage * bgi = [self resizeImage:image newSize:CGSizeMake(1500, 675)];
if (bgi!=nil) {
[bgimgvu setImage:bgi];
}

被调用,但使用了错误的图像作为参数!也就是说,它以第二张图片作为参数被调用。

为了完整起见,调整下载图像大小的函数是:

- (UIImage *)resizeImage:(UIImage*)image newSize:(CGSize)newSize {
CGRect newRect = CGRectIntegral(CGRectMake(0, 0, newSize.width, newSize.height));
CGImageRef imageRef = image.CGImage;

UIGraphicsBeginImageContextWithOptions(newSize, NO, 0);
CGContextRef context = UIGraphicsGetCurrentContext();

// Set the quality level to use when rescaling
CGContextSetInterpolationQuality(context, kCGInterpolationHigh);
CGAffineTransform flipVertical = CGAffineTransformMake(1, 0, 0, -1, 0, newSize.height);

CGContextConcatCTM(context, flipVertical);
// Draw into the context; this scales the image
CGContextDrawImage(context, newRect, imageRef);

// Get the resized image from the context and a UIImage
CGImageRef newImageRef = CGBitmapContextCreateImage(context);
UIImage *newImage = [UIImage imageWithCGImage:newImageRef];

CGImageRelease(newImageRef);
UIGraphicsEndImageContext();

return newImage;
}

我错过了什么/做错了什么?

最佳答案

我通过在成功回调函数的开头添加比较来解决的:

if(image!=loadvu.image) return; 

这给出了以下警告:

Capturing 'loadvu' strongly in this block is likely to lead to a retain cycle

但无论如何都要编译。不是一个干净的解决方案,只是一个有效的解决方案。

关于ios - SDWebImage 成功加载处理程序返回错误的 UIImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9987847/

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