So I'm progromatically creating a UIImageView and adding a UIImage to it. This works except that it looks like the image is full size so I'm only seeing a tiny part of the image through the UIImageView. What's the best way to make the UIImage appear properly?
Here's what I have so far:
let imageView = UIImageView(image: myImg)
imageView.contentMode = .scaleAspectFit
imageView.clipToBounds = trueThanks!