Skip to content

Instantly share code, notes, and snippets.

@mlaster
Created September 28, 2012 20:33
Show Gist options
  • Save mlaster/3801931 to your computer and use it in GitHub Desktop.
Save mlaster/3801931 to your computer and use it in GitHub Desktop.
- (void)viewWillAppear:(BOOL)animated {
CIFilter *filter = nil;
filter = [CIFilter filterWithName:@"CIGaussianBlur" keysAndValues:@"inputRadius", @50.0, nil];
self.view.layer.backgroundFilters = @[filter];
[super viewWillAppear:animated];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment