2

UIBlurEffect が動作する ViewController が動作しています。これが私のコードです:

@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に追加する方法は?

4

1 に答える 1