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
First you have to check , have you got the proper response if you got the reasponse than write the code like
Alamofire.request(imageUrl!, method: .get).response { response in if let image = UIImage(data: response.data!) { cell. imageView?.image = image } }