I have a tableview, how can I add image to the left of this cells?
tableview
For my fellow Swift users, here is the code you will need:
let imageName = "un-child-rights.jpg" let image = UIImage(named: imageName) cell.imageView!.image = image