883 questions
0
votes
1
answer
64
views
How can i solve SDWebImage fatal errors?
I'm totally new learner on swift and I'm trying to getting data from my cloud storage base and I create a function about it like below :
func tableView(_ tableView: UITableView, cellForRowAt indexPath:...
0
votes
1
answer
274
views
Why does my snapshot() in SwiftUI not capture downloaded images from WebImage (SDWebImageSwiftUI)?
I’m trying to take a snapshot of a SwiftUI view that includes an image downloaded using WebImage from the SDWebImageSwiftUI library. However, when I call the snapshot function, the resulting image ...
0
votes
0
answers
70
views
Depcreated API removeImage(forKey:cacheType:completion) for SDWebImage
After updating the SDWebImage Library to 15.9.1 version i am facing with the current deprecated API
What does it mean the following statement: "No longer use. Cast to cache instance and call its ...
1
vote
1
answer
183
views
SDAnimatedImageView as drop-in replacement NSImageView
I currently have an NSImageView using a .gif from my bundle setup in storyboard/nib, but my GIF isn't working on all systems and so I want to try swapping in SDAnimatedImageView.
However when changing ...
1
vote
0
answers
130
views
In SDWebImageSwiftUI, which has more priority: the header Cache-Control or SDImageCache.shared.config.maxDiskAge?
I am assuming that SDWebImageSwiftUI takes the header Cache-Control max-age into account when defining the cache expiration date (not sure though).
But what happens if I set SDImageCache.shared.config....
0
votes
1
answer
769
views
How to make an image fade in when loaded using SDWebImageSwiftUI
I am using the following code in a LazyVGrid to load images from a firebase bucket with SDWebImageSwiftUI and they show, but they don't fade in nicely and show suddenly:
import SDWebImageSwiftUI
...
0
votes
1
answer
87
views
SDWebImage cache management
I'm currently seeking a solution that allows us to discern between older and newer cached objects in SDWebImage, specifically images in this context. Is there a method or solution available that ...
1
vote
0
answers
223
views
Parse and SDWebImage Pods have HUGE problems after Xcode update
I had an app in which I used CocoaPods to install Parse and SDWebImage. Everything worked just fine. Then I updated Xcode and it now fails with MULTIPLE issues. I was getting undefined object error ...
0
votes
1
answer
65
views
Small size UIImageView display image becomes blurred
My picture will be blurred in a small size (153x153) UIImageView, but it will be displayed normally in another large size UIImageView (375x375) page, and i load the image using sd_setImageWithURL ...
0
votes
1
answer
331
views
swift Video Thumbnail image cache problem
I have VideoThumbnailManager and It serves to cache with SDWebImage the image of the video and display it to the user. But the Video thumbnail is showing 2 on the collectionview. but when I scroll, ...
0
votes
1
answer
1k
views
SwiftUI - Image flickering when View reloaded on Socket Data change
As i am moving from UIKit to SwiftUI, i am facing this weird issue where my Images are flickering whenever the List is reloaded in SwiftUI.
Below is the code of my SpotView (child view)
struct ...
2
votes
0
answers
630
views
ImageRenderer not loading WebImage in SwiftUI
I am trying to capture a snapshot of a view. Everything is working fine but when I try to load an image from a URL using the SDWebImageView library, it's simply not loading the image.
This is my code:
...
0
votes
1
answer
286
views
Swift ImageView's top Constraints looks wrong and covered its superView?
I want to achieve a "show more" effect in my view. The desired effect is as follows(sorry for my poor painting), the view's height is set to a specific value at first(such as 304), and when ...
0
votes
1
answer
112
views
How to pass API image from Table View into another View Controller using didselectrowat
I am a newbie in Swift and I am trying to build an app in which I retrieve plant images and information from this api "https://rapidapi.com/mnai01/api/house-plants2".
I managed to implement ...
-1
votes
1
answer
843
views
Does SDWebImage support webp images without SDWebImageWebPCoder?
I was able to download and display Webp images without SDWebImageWebPCoder using SDWebImage 5.13.4. So what is the purpose of SDWebImageWebPCoder?
Does SDWebImage already support Webp or am I wrong ...