我有这个代码用于向UIButton添加阴影
layer.masksToBounds = false
layer.shadowColor = UIColor.black.cgColor
layer.shadowOffset = CGSize(width: 0, height: 1)
layer.shadowOpacity = 0.2
layer.shouldRasterize = true
它成功地为按钮添加了阴影,但也使按钮图像模糊 是否可以在没有按钮按钮内容的情况下添加阴影?
答案 0 :(得分:1)
您的代码没问题,只需删除行layer.shouldRasterize = true或将其设置为False。