18
使用swift 3在UIView上添加Shadow
之前的Swift 3我在UIView中添加了阴影,如下所示: //toolbar is an UIToolbar (UIView) toolbar.layer.masksToBounds = false toolbar.layer.shadowOffset = CGSize(width: -1, height: 1) toolbar.layer.shadowRadius = 1 toolbar.layer.shadowOpacity = 0.5 但是上面的代码在swift 3中不起作用,而不是阴影,我的整个视图的颜色变成了丑陋的灰色 有谁知道我们如何在Swift 3中添加阴影?