Created
March 25, 2016 07:22
-
-
Save wisaruthk/b2b02f82dd1710ebb373 to your computer and use it in GitHub Desktop.
objective c blur background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark]; | |
UIVisualEffectView *bluredView = [[UIVisualEffectView alloc] initWithEffect:effect]; | |
bluredView.frame = self.view.bounds; | |
[self.view insertSubview:bluredView atIndex:0]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment