cell.imageView!.image = UIImage(data: data)
cell.imageView?.layer.borderWidth=1.0
cell.imageView?.layer.masksToBounds = true
cell.imageView?.layer.borderColor = UIColor.white.cgColor
cell.imageView?.layer.cornerRadius = (cell.imageView?.frame.size.height)!/2
cell.imageView?.clipsToBounds = trueI added this code to make the image in the cell round. But it is not round. Can anyone tell me why? And help me? Thanks