forked from organicmaps/organicmaps
[iOS] fix bugs related to images from web
This commit is contained in:
parent
29281140cd
commit
7e88394445
4 changed files with 13 additions and 7 deletions
|
@ -26,16 +26,13 @@ static char kAssociatedObjectKey;
|
|||
[UIView transitionWithView:self
|
||||
duration:duration
|
||||
options:UIViewAnimationOptionTransitionCrossDissolve
|
||||
animations:^{
|
||||
self.image = image;
|
||||
}
|
||||
completion:^(BOOL finished) {
|
||||
if (completion) { completion(image, nil); }
|
||||
}];
|
||||
animations:^{ self.image = image; }
|
||||
completion:nil];
|
||||
} else {
|
||||
self.image = image;
|
||||
if (completion) { completion(image, nil); }
|
||||
}
|
||||
|
||||
if (completion) { completion(image, nil); }
|
||||
}];
|
||||
objc_setAssociatedObject(self, &kAssociatedObjectKey, task, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
|
||||
}
|
||||
|
|
|
@ -110,7 +110,9 @@ final class AdBanner: UITableViewCell {
|
|||
@objc weak var mpNativeAd: MPNativeAd?
|
||||
|
||||
override func prepareForReuse() {
|
||||
super.prepareForReuse()
|
||||
adIconImageView.wi_cancelImageRequest()
|
||||
adIconImageView.image = nil;
|
||||
}
|
||||
|
||||
private var nativeAd: Banner? {
|
||||
|
|
|
@ -6,6 +6,11 @@ final class CarouselElement: UICollectionViewCell {
|
|||
image.wi_setImage(with: url, transitionDuration: kDefaultAnimationDuration)
|
||||
dimMask.forEach { $0.isHidden = !isLastCell }
|
||||
}
|
||||
|
||||
override func prepareForReuse() {
|
||||
super.prepareForReuse()
|
||||
image.image = nil;
|
||||
}
|
||||
}
|
||||
|
||||
@objc(MWMPPHotelCarouselCell)
|
||||
|
|
|
@ -10,6 +10,8 @@ final class GalleryCell: UICollectionViewCell {
|
|||
}
|
||||
|
||||
override func prepareForReuse() {
|
||||
super.prepareForReuse()
|
||||
imageView.wi_cancelImageRequest()
|
||||
imageView.image = nil;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue