I am making a tvOS app in UIStorybord
. I want to make a blur of my current UIViewcontroller
based on the previous UIViewController
in the navigation Stack. I am using UIVisualEffectView
class for that. So i have my firstViewController, i added UIImageView
on that. On the next UIViewController
(this VC will be pushed on top of my FirstViewController) i added UIVisualEffectView
on self.view in storyboard and then added a UIButton
inside the view property of UIVisualEffectView
, but i am not getting any blurring effect.
I have not written any code for that. Do i have to write the codefor that? I want to do every thing in the storyboards as it is much easier to add constraints in the storyboard instead of doing that in the code.
Any help will be highly appreciated. Thanks