-
Notifications
You must be signed in to change notification settings - Fork 3
iOS UIImageView
Kevin Leong edited this page Nov 8, 2016
·
1 revision
class MyCell: UITableViewCell {
@IBOutlet weak var myImage: UIImageView!
override func awakeFromNib() {
super.awakeFromNib()
// Circular avatar image
myImage.layer.cornerRadius = myImage.frame.width / 2
myImage.clipsToBounds = true
// Image border
myImage.layer.borderWidth = 3.0
myImage.layer.borderColor = UIColor.darkGray.cgColor
}
}