我有一个工作的 ViewController 和工作的 UIBlurEffect。这是我的代码:
@IBOutlet weak var nameLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
let blurEffect = UIBlurEffect(style: .Light)
let blurView = UIVisualEffectView(effect: blurEffect)
blurView.frame = self.view.frame
blurView.setTranslatesAutoresizingMaskIntoConstraints(false)
self.view.insertSubview(blurView, atIndex: 0)
}
现在我想在 nameLabel 中添加一个 UIVibranyEffect。如何以编程方式将 UIVibrancyEffect 添加到现有的 UILabel?