I am using AlamofireImages to try to download an image from a server and display it in my table view cell, this is what I got, but my images does not appear, just the textLabel
You can use SDWebImage
First You need to Import this
import SDWebImage
Then You may use this method
let imgUrl = URL(string:"your image URL string") cell.imageView?.sd_setImage(with: imgUrl, placeholderImage: UIImage(named: "propic"))