How do I make a UIImageView with rounded corners on a Swift iOS Playground? Inside it needs to be filled with a color.
Try this, it worked for me.
self.profileImageView.layer.cornerRadius = self.profileImageView.frame.size.width / 2 self.profileImageView.clipsToBounds = true