Skip to content

Instantly share code, notes, and snippets.

@wisaruthk
Created March 25, 2016 07:22
Show Gist options
  • Save wisaruthk/b2b02f82dd1710ebb373 to your computer and use it in GitHub Desktop.
Save wisaruthk/b2b02f82dd1710ebb373 to your computer and use it in GitHub Desktop.
objective c blur background
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