我必须通过 Swift 代码设置 WKInterfaceImage
的半径属性。
我需要与我的其他 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
我查看了引用指南,但没有找到解决方案。谢谢你的帮助!
最佳答案
您没有带有WKInterfaceImage的此类功能。只有少数公共(public) API。
为了在 WatchKit 中圆化界面元素的角,您需要使用 WKInterfaceGroup。它允许您直接在 Storyboard中修改所有角的半径。
如果需要在组周围创建轮廓边框,则需要创建自定义UIImage并将其设置为组的背景图像。
关于ios - 通过代码设置 WKInterfaceImage 的(边界)半径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28926235/