如何在模糊效果的基础上使用UIPageView?

时间:2016-10-31 22:24:27

标签: ios swift uipageviewcontroller

我正在开发一个应用程序,我希望在模糊效果之上使用UIPageView。我知道如何使用故事板,但由于我将它作为子视图添加到另一个视图之上,我没有办法做到这一点。谁能帮我这个?我用来创建模糊效果的代码是这样的:

        self.view.backgroundColor = UIColor.clear
        let blurEffect = UIBlurEffect(style: UIBlurEffectStyle.light)
        let blurEffectView = UIVisualEffectView(effect: blurEffect)

        blurEffectView.frame = self.view.bounds
        blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]

        self.view.addSubview(blurEffectView) 

1 个答案:

答案 0 :(得分:1)

实际上你可以使用这种方法:

self.view.insertSubview(blurView, belowSubview:pageView)

现在页面视图位于模糊之上。