self.imageView?.frame = CGRect(x: 5, y: 10, width: 70, height: 70)
Если вы установите границы UIImageView, то он будет испорчен. UIImageView автоматически заполнит размер ячейки, поэтому, если вы программно создаете представление, у вас есть контроль над размером всего представления.
Если вам нужно установить для всех изображений новый размер, чтобы они работали, используйте эту функцию (я обновил ее для iOS 10 с на этот вопрос :
func resizeImage(image: UIImage, targetSize: CGSize) -> UIImage {
let size = image.size
let widthRatio = targetSize.width / size.width
let heightRatio = targetSize.height / size.height
// Figure out what our orientation is, and use that to form the rectangle
var newSize: CGSize
if(widthRatio > heightRatio) {
newSize = CGSize(width: size.width * heightRatio, height: size.height * heightRatio)
} else {
newSize = CGSize(width: size.width * widthRatio, height: size.height * widthRatio)
}
// This is the rect that we've calculated out and this is what is actually used below
let rect = CGRect(x: 0, y: 0, width: newSize.width, height: newSize.height)
// Actually do the resizing to the rect using the ImageContext stuff
return UIGraphicsImageRenderer(size: newSize).image { ctx in
image.draw(in: rect)
}
}