I have a problem when I want to show an Image from a URL. I created a class for downloading data and publishing the data forward - ImageLoader
:
class ImageLoader: ObservableObject {
var didChange = PassthroughSubject<Data, Never>()
var data = Data() {
didSet {
didChange.send(data)
}
}
func loadData(from urlString: String?) {
if let urlString = urlString {
guard let url = URL(string: urlString) else { return }
let task = URLSession.shared.dataTask(with: url) { data, response, error in
guard let data = data else { return }
DispatchQueue.main.async {
self.data = data
}
}
task.resume()
}
}
}
Therefore, I use it inside a ImageView
struct which I use inside my screen.
struct ImageView: View {
var urlString: String
@ObservedObject var imageLoader: ImageLoader = ImageLoader()
@State var image: UIImage = UIImage(named: "homelessDogsCats")!
var body: some View {
ZStack() {
Image(uiImage: image)
.resizable()
.onReceive(imageLoader.didChange) { data in
self.image = UIImage(data: data) ?? UIImage()
}
}.onAppear {
self.imageLoader.loadData(from: urlString)
}
}
}
My problem is that if I just run my project, the image doesn't change and by default appears only image UIImage(named: "homelessDogsCats")
.
If I add a breakpoint inside
onAppear {
self.imageLoader.loadData(from: urlString)
}
and just step forward, the image is showing.
I have the same problem in another view which usually doesn't display the Image
from URL, but sometimes it does.
Try using
@Published
- then you don't need a customPassthroughSubject
:and use it in your view:
Note: if you're using SwiftUI 2, you can use
@StateObject
instead of@ObservedObject
andonChange
instead ofonReceive
.