Skip to content

Instantly share code, notes, and snippets.

@SongJiaqiang
Created November 26, 2016 06:42
Show Gist options
  • Save SongJiaqiang/800224cb8d6f898f25316bb28bc409eb to your computer and use it in GitHub Desktop.
Save SongJiaqiang/800224cb8d6f898f25316bb28bc409eb to your computer and use it in GitHub Desktop.
// show image
self.imageView.image = [UIImage imageNamed:@"imagename"];
// create effect
UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
// add effect to an effect view
UIVisualEffectView *effectView = [[UIVisualEffectView alloc]initWithEffect:blur];
effectView.frame = self.view.frame;
// add the effect view to the image view
[self.imageView addSubview:effectView];
@SongJiaqiang
Copy link
Author

@SongJiaqiang
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment