I imported Kingfisher
import UIKit
import Kingfisher
This is my simple code to can explain the problem
Creating an imageView and trying display image from URL
class ViewController: UIViewController {
@IBOutlet weak var image:UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
let rawstring = "https://apis.baytelhekma.com/zinzo/public/storage/" + #"products\November2020\eUWwRjNCYCdHUjGIQiJk.png"#
let url = URL(string: rawstring)
image.kf.setImage(with: url)
}
}
Please check your url again as I've tried another url and it works fine, you can check it:
or you can make url like this if it helped: