0

I have created UIVisualEffectView and I like it much. But, I don't have any idea on how can I create iOS like alert view having blur effect.

Here is the screenshot which explains what I need.

enter image description here

NSPratik
  • 4,714
  • 7
  • 51
  • 81

1 Answers1

1

Here is sample it may be help you you can change BlurEffect type

UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
UIVisualEffectView *backgroundView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
[self.view insertSubview:backgroundView atIndex:0];
kirti Chavda
  • 3,029
  • 2
  • 17
  • 29