Created
September 26, 2017 12:01
-
-
Save kos9kus/1242632d0f949afc6bf776e8a82465d8 to your computer and use it in GitHub Desktop.
UIVisualEffect
This file contains 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
UIVisualEffect *blurEffect; | |
blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; | |
UIVisualEffectView *visualEffectView; | |
visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect]; | |
// visualEffectView - UIImageView | |
visualEffectView.frame = self.imageView.bounds; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment