I have to set the radius attribute of a WKInterfaceImage
by Swift code.
I need the same formatting as for my others UIImageViews:
logoView.layer.cornerRadius = logoView.frame.width / 2
logoView.clipsToBounds = true
logoView.layer.borderWidth = 1.0
logoView.layer.borderColor = UIColor (
red: 0x33 / 255,
green: 0x99 / 255,
blue: 0x66 / 255,
alpha: 1.0
).CGColor
I checked the reference guide but I found no solution. Thanks for you help!